-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathto-maps.php
More file actions
28 lines (23 loc) · 1.21 KB
/
to-maps.php
File metadata and controls
28 lines (23 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/*
* Plugin Name: Tour Operator Maps
* Plugin URI: https://www.lsdev.biz/product/tour-operator-maps/
* Description: The Maps extension gives you the ability to connect maps with location-marking pins to your Accommodation, Destination and Tour pages. You can also display maps with clusters of markers, to display the set of Accommodations in each Destination. Use the extension to show a mapped out trip itinerary that connects the dots of the accommodations you stay in on your tours. Maps will also integrate with the Activities post type, if you have that extension installed.
* Version: 1.1.3
* Author: LightSpeed
* Author URI: https://www.lsdev.biz/
* License: GPL3+
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: to-maps
* Domain Path: /languages/
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define('LSX_TO_MAPS_PATH', plugin_dir_path( __FILE__ ) );
define('LSX_TO_MAPS_CORE', __FILE__ );
define('LSX_TO_MAPS_URL', plugin_dir_url( __FILE__ ) );
define('LSX_TO_MAPS_VER', '1.1.3' );
/* ======================= Below is the Plugin Class init ========================= */
require_once( LSX_TO_MAPS_PATH . '/classes/class-to-maps.php' );