1 | <?php |
||
2 | /* |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
3 | * Plugin Name: LSX Importer for Wetu |
||
4 | * Plugin URI: https://github.com/lightspeeddevelopment/lsx-wetu-importer |
||
5 | * Description: By integrating with the Wetu Tour Operator system, you are able to import your content into the LSX Tour Operators plugin format |
||
6 | * Author: LightSpeed |
||
7 | * Version: 1.3.8 |
||
8 | * Author URI: https://www.lsdev.biz/ |
||
9 | * License: GPL3+ |
||
10 | * Text Domain: lsx-wetu-importer |
||
11 | * Domain Path: /languages/ |
||
12 | */ |
||
13 | |||
14 | define( 'LSX_WETU_IMPORTER_PATH', plugin_dir_path( __FILE__ ) ); |
||
15 | define( 'LSX_WETU_IMPORTER_CORE', __FILE__ ); |
||
16 | define( 'LSX_WETU_IMPORTER_URL', plugin_dir_url( __FILE__ ) ); |
||
17 | define( 'LSX_WETU_IMPORTER_VER', '1.3.8' ); |
||
18 | |||
19 | register_activation_hook( LSX_WETU_IMPORTER_CORE, array( 'LSX_WETU_Importer', 'register_activation_hook' ) ); |
||
20 | |||
21 | /* ======================= Below is the Plugin Class init ========================= */ |
||
22 | |||
23 | require_once LSX_WETU_IMPORTER_PATH . 'classes/class-lsx-wetu-importer.php'; |
||
24 |