Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
custom-css-js-php
/
modules
/
shortcode
:
model.shortcode.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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(); } } }