• File: model.shortcode.php
  • Full Path: /home/dealkatnwc/www/wp-content/plugins/custom-css-js-php/modules/shortcode/model.shortcode.php
  • Date Modified: 03/07/2020 11:14 AM
  • File size: 595 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * Class: WCJP_Model_Shortcode
 * @author Flipper Code <hello@flippercode.com>
 * @version 2.0.0
 * @package Core
 */

if ( ! class_exists( 'WCJP_Model_Shortcode' ) ) {

	/**
	 * Shortcode model to display output on frontend.
	 * @package Core
	 * @author Flipper Code <hello@flippercode.com>
	 */
	class WCJP_Model_Shortcode extends FlipperCode_Model_Base {
		/**
		 * Intialize Shortcode object.
		 */
		function __construct() {
		}
		/**
		 * Admin menu for Settings Operation
		 * @return array Admin menu navigation(s).
		 */
		function navigation() {
			return array();
		}
	}
}