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

if ( ! class_exists( 'wcjp_Model_Overview' ) ) {

	/**
	 * Overview model for Plugin Overview.
	 * @package Core
	 * @author Flipper Code <hello@flippercode.com>
	 */
	class wcjp_Model_Overview extends FlipperCode_Model_Base {
		/**
		 * Intialize Backup object.
		 */
		function __construct() {
		}
		/**
		 * Admin menu for Settings Operation
		 */
		function navigation() {
			return array(
			'wcjp_how_overview' => __( 'How to Use', WCJP_TEXT_DOMAIN ),
			);
		}
	}
}