[ank_google_map] * Version: 2.3.1 * Author: Ankur Kumar * Author URI: https://ankurk91.github.io/ * License: MIT * License URI: https://opensource.org/licenses/MIT * Text Domain: ank-google-map * Domain Path: /languages */ // No direct access if (!defined('ABSPATH')) die; define('AGM_PLUGIN_VERSION', '2.3.1'); define('AGM_BASE_FILE', __FILE__); // @link https://developers.google.com/maps/documentation/javascript/releases define('AGM_API_VER', '3.26'); // Include required class files require __DIR__ . '/inc/class-util.php'; if (is_admin() && (!defined('DOING_AJAX') || !DOING_AJAX)) { require __DIR__ . '/inc/class-settings.php'; require __DIR__ . '/inc/class-admin.php'; new Admin(); } else { require __DIR__ . '/inc/class-frontend.php'; new Frontend(); }