HEX
Server: Apache
System: Linux webd001.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: mciraet (192513)
PHP: 8.2.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/mciraet/www/wp-content/plugins/wp-google-map-gold/classes/wpgmp-model.php
<?php
/**
 * Controller class
 *
 * @author Flipper Code<hello@flippercode.com>
 * @version 3.0.0
 * @package Posts
 */

if ( ! class_exists( 'WPGMP_Model' ) ) {

	/**
	 * Controller class to display views.
	 *
	 * @author: Flipper Code<hello@flippercode.com>
	 * @version: 3.0.0
	 * @package: Maps
	 */

	class WPGMP_Model extends Flippercode_Factory_Model {


		function __construct() {

			$page = isset($_GET['page']) && !empty($_GET['page']) ? $_GET['page'] : '';
			$module_path = WPGMP_MODEL;
			$module_path = apply_filters('fc_modal_load_module', $module_path, $page);
			parent::__construct( $module_path, 'WPGMP_Model_' );

		}

	}

}