1 | <?php |
||
2 | /* |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
3 | * Plugin Name: LSX Tour Operator Team |
||
4 | * Plugin URI: https://www.lsdev.biz/product/tour-operator-team/ |
||
5 | * Description: Real peoples' faces go a long way to building trust with your clients. The Team Extension allows your business's staff to be added as Team Members with their own profile which can be associated with specific destinations and tours. |
||
6 | * Version: 1.2.3 |
||
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: to-team |
||
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_TEAM_PATH', plugin_dir_path( __FILE__ ) ); |
||
21 | define( 'LSX_TO_TEAM_CORE', __FILE__ ); |
||
22 | define( 'LSX_TO_TEAM_URL', plugin_dir_url( __FILE__ ) ); |
||
23 | define( 'LSX_TO_TEAM_VER', '1.2.3' ); |
||
24 | |||
25 | if ( ! defined( 'TEAM_ARCHIVE_URL' ) ) { |
||
0 ignored issues
–
show
|
|||
26 | define( 'TEAM_ARCHIVE_URL', 'team-members' ); |
||
27 | } |
||
28 | |||
29 | /* ======================= Below is the Plugin Class init ========================= */ |
||
30 | |||
31 | require_once LSX_TO_TEAM_PATH . '/classes/class-lsx-to-team.php'; |
||
32 |