-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlsx-importer-for-wetu.php
31 lines (25 loc) · 1.15 KB
/
lsx-importer-for-wetu.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
<?php
/*
* Plugin Name: LSX Importer for Wetu
* Plugin URI: https://lsx.design/products/wetu-importer/
* Description: Integrate with the Wetu Tour Operator system to import destination, accommodation, and tour content into the LSX Tour Operator plugin format.
* Author: lightspeedwp, wetudev
* Version: 1.5.0
* Requires at least: 6.7
* Tested up to: 6.7
* Requires PHP: 8.0
* Author URI: https://lightspeedwp.agency/
* License: GPLv3 or later
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: lsx-wetu-importer
* Domain Path: /languages/
* Tags: lsx, tour operator, wetu, importer
* Requires Plugins: tour-operator
*/
define( 'LSX_WETU_IMPORTER_PATH', plugin_dir_path( __FILE__ ) );
define( 'LSX_WETU_IMPORTER_CORE', __FILE__ );
define( 'LSX_WETU_IMPORTER_URL', plugin_dir_url( __FILE__ ) );
define( 'LSX_WETU_IMPORTER_VER', '1.5.0' );
register_activation_hook( LSX_WETU_IMPORTER_CORE, array( 'LSX_WETU_Importer', 'register_activation_hook' ) );
/* ======================= Below is the Plugin Class init ========================= */
require_once LSX_WETU_IMPORTER_PATH . 'classes/class-lsx-wetu-importer.php';