PluginProbe
WP Maps – Google Maps,OpenStreetMap,Mapbox,Store Locator,Listing,Directory & Filters / trunk
WP Maps – Google Maps,OpenStreetMap,Mapbox,Store Locator,Listing,Directory & Filters vtrunk
4.9.9 4.9.8 4.9.7 4.9.6 4.9.5 4.8.7 4.8.8 4.8.9 4.9.0 4.9.1 4.9.2 4.9.3 version4.4.8 trunk 3.0.8 3.1.1 4.0.6 4.2.2 4.4.5 4.4.6 4.4.7 4.4.9 4.5.0 4.5.1 4.5.2 All 54 releases
wp-google-map-plugin / modules / shortcode / model.shortcode.php

model.shortcode.php in WP Maps – Google Maps,OpenStreetMap,Mapbox,Store Locator,Listing,Directory & Filters trunk, at modules/shortcode/model.shortcode.php

37 lines 648 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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