1 | <?php |
||
2 | /* |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
3 | * Plugin Name: LSX Tour Operator Special Offers |
||
4 | * Plugin URI: https://www.lsdev.biz/product/tour-operator-special-offers/ |
||
5 | * Description: The Tour Operator Special Offers extension gives you the ability to create time-sensitive special prices that can be applied to Tour Operator post types you are using: Accommodations, destinations and/or tours. |
||
6 | * Version: 1.3.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-specials |
||
12 | * Domain Path: /languages |
||
13 | */ |
||
14 | |||
15 | // If this file is called directly, abort. |
||
16 | if ( ! defined( 'WPINC' ) ) { |
||
0 ignored issues
–
show
|
|||
17 | die; |
||
18 | } |
||
19 | |||
20 | define('LSX_TO_SPECIALS_PATH', plugin_dir_path( __FILE__ ) ); |
||
0 ignored issues
–
show
|
|||
21 | define('LSX_TO_SPECIALS_CORE', __FILE__ ); |
||
0 ignored issues
–
show
|
|||
22 | define('LSX_TO_SPECIALS_URL', plugin_dir_url( __FILE__ ) ); |
||
0 ignored issues
–
show
|
|||
23 | define('LSX_TO_SPECIALS_VER', '1.3.2' ); |
||
24 | |||
25 | |||
26 | /* ======================= Below is the Plugin Class init ========================= */ |
||
27 | |||
28 | require_once( LSX_TO_SPECIALS_PATH . '/classes/class-to-specials.php' ); |
||
29 |