-
Notifications
You must be signed in to change notification settings - Fork 0
/
to-activities.php
27 lines (23 loc) · 999 Bytes
/
to-activities.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
<?php
/**
* Plugin Name: LSX Tour Operator Activities
* Plugin URI: https://www.lsdev.biz/product/tour-operator-activities/
* Description: The Tour Operator Activities extension adds “Activities” as a post type, which can be featured as part of a tour, at a specific destination, at an accommodation, and so on.
* Version: 1.1.2
* Author: LightSpeed
* Author URI: https://www.lsdev.biz/
* License: GPL3+
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: lsx-activities
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define( 'LSX_ACTIVITIES_PATH', plugin_dir_path( __FILE__ ) );
define( 'LSX_ACTIVITIES_CORE', __FILE__ );
define( 'LSX_ACTIVITIES_URL', plugin_dir_url( __FILE__ ) );
define( 'LSX_ACTIVITIES_VER', '1.1.2' );
/* ======================= Below is the Plugin Class init ========================= */
require_once LSX_ACTIVITIES_PATH . '/classes/class-lsx-activities.php';