# wp-google-map-plugin/trunk/modules/shortcode/model.shortcode.php

WP Maps – Google Maps,OpenStreetMap,Mapbox,Store Locator,Listing,Directory &amp; Filters, version trunk. 37 lines.

- Page: https://pluginprobe.com/plugins/wp-google-map-plugin/trunk/code/modules/shortcode/model.shortcode.php
- Raw: https://pluginprobe.com/plugins/wp-google-map-plugin/trunk/raw/modules/shortcode/model.shortcode.php
- Modified: 2026-01-14T05:20:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-google-map-plugin/trunk/code/modules/shortcode/model.shortcode.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) exit;

/**
 * Class: WPGMP_Model_Shortcode
 *
 * @author Flipper Code <hello@flippercode.com>
 * @version 3.0.0
 * @package Maps
 */

if ( ! class_exists( 'WPGMP_Model_Shortcode' ) ) {

	/**
	 * Shortcode model to display output on frontend.
	 *
	 * @package Maps
	 * @author Flipper Code <hello@flippercode.com>
	 */
	class WPGMP_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();
		}
	}
}

```
