1 | <?php |
||
2 | /** |
||
3 | * Plugin Name: LSX Tour Operator Activities |
||
4 | * Plugin URI: https://www.lsdev.biz/product/tour-operator-activities/ |
||
5 | * 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. |
||
6 | * Version: 1.1.2 |
||
7 | * Author: LightSpeed |
||
8 | * Author URI: https://www.lsdev.biz/ |
||
9 | * License: GPL3+ |
||
10 | * License URI: https://www.gnu.org/licenses/gpl-3.0.html |
||
11 | * Text Domain: lsx-activities |
||
12 | * Domain Path: /languages |
||
13 | */ |
||
0 ignored issues
–
show
Coding Style
Documentation
introduced
by
![]() |
|||
14 | |||
15 | // If this file is called directly, abort. |
||
16 | if ( ! defined( 'WPINC' ) ) { |
||
0 ignored issues
–
show
|
|||
17 | die; |
||
18 | } |
||
19 | |||
20 | define( 'LSX_ACTIVITIES_PATH', plugin_dir_path( __FILE__ ) ); |
||
21 | define( 'LSX_ACTIVITIES_CORE', __FILE__ ); |
||
22 | define( 'LSX_ACTIVITIES_URL', plugin_dir_url( __FILE__ ) ); |
||
23 | define( 'LSX_ACTIVITIES_VER', '1.1.2' ); |
||
24 | |||
25 | /* ======================= Below is the Plugin Class init ========================= */ |
||
26 | |||
27 | require_once LSX_ACTIVITIES_PATH . '/classes/class-lsx-activities.php'; |
||
28 |