-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtour-operator.php
37 lines (32 loc) · 1.26 KB
/
tour-operator.php
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
29
30
31
32
33
34
35
36
37
<?php
/*
* Plugin Name: LSX Tour Operator
* Plugin URI: https://touroperator.solutions/
* Description: Showcase tours, destinations, and accommodations with digital itineraries, galleries, and integrated maps.
* Author: lightspeedwp
* Author URI: https://lightspeedwp.agency/
* Version: 2.0.1
* Requires at least: 6.7
* Tested up to: 6.7
* Requires PHP: 8.0
* License: GPLv3 or later
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: tour-operator
* Domain Path: /languages/
* Tags: lsx, tour operator, travel, tourism, itinerary
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define( 'LSX_TO_PATH', plugin_dir_path( __FILE__ ) );
define( 'LSX_TO_CORE', __FILE__ );
define( 'LSX_TO_URL', plugin_dir_url( __FILE__ ) );
define( 'LSX_TO_VER', '2.0.1' );
global $CONTENT_MODEL_JSON_PATH;
$CONTENT_MODEL_JSON_PATH[] = LSX_TO_PATH;
// Post Expirator.
define( 'LSX_TO_POSTEXPIRATOR_DATEFORMAT', esc_html__( 'l F jS, Y', 'tour-operator' ) );
define( 'LSX_TO_POSTEXPIRATOR_TIMEFORMAT', esc_html__( 'g:ia', 'tour-operator' ) );
// Include bootstrapper and start plugin.
require_once LSX_TO_PATH . 'tour-operator-bootstrap.php';