| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined( 'ABSPATH' ) ) exit; |
| 4 |
|
| 5 |
/** |
| 6 |
* Class: WPGMP_Model_Shortcode |
| 7 |
* |
| 8 |
* @author Flipper Code <hello@flippercode.com> |
| 9 |
* @version 3.0.0 |
| 10 |
* @package Maps |
| 11 |
*/ |
| 12 |
|
| 13 |
if ( ! class_exists( 'WPGMP_Model_Shortcode' ) ) { |
| 14 |
|
| 15 |
/** |
| 16 |
* Shortcode model to display output on frontend. |
| 17 |
* |
| 18 |
* @package Maps |
| 19 |
* @author Flipper Code <hello@flippercode.com> |
| 20 |
*/ |
| 21 |
class WPGMP_Model_Shortcode extends FlipperCode_Model_Base { |
| 22 |
/** |
| 23 |
* Intialize Shortcode object. |
| 24 |
*/ |
| 25 |
function __construct() { |
| 26 |
} |
| 27 |
/** |
| 28 |
* Admin menu for Settings Operation |
| 29 |
* |
| 30 |
* @return array Admin menu navigation(s). |
| 31 |
*/ |
| 32 |
function navigation() { |
| 33 |
return array(); |
| 34 |
} |
| 35 |
} |
| 36 |
} |
| 37 |
|