Issues (1223)

lsx-team.php (3 issues)

1
<?php
2
/*
0 ignored issues
show
You must use "/**" style comments for a file comment
Loading history...
3
 * Plugin Name: LSX Team
4
 * Plugin URI:  https://www.lsdev.biz/product/lsx-team/
5
 * Description: The LSX Team extension provides a custom post type that allows you to easily show off the people that make up your business.
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-team
12
 * Domain Path: /languages
13
 */
14
15
// If this file is called directly, abort.
16
if ( ! defined( 'WPINC' ) ) {
0 ignored issues
show
Expected 0 spaces after opening bracket; 1 found
Loading history...
Expected 0 spaces before closing bracket; 1 found
Loading history...
17
	die;
18
}
19
20
define( 'LSX_TEAM_PATH', plugin_dir_path( __FILE__ ) );
21
define( 'LSX_TEAM_CORE', __FILE__ );
22
define( 'LSX_TEAM_URL', plugin_dir_url( __FILE__ ) );
23
define( 'LSX_TEAM_VER', '1.3.2' );
24
25
26
/* ======================= Below is the Plugin Class init ========================= */
27
28
// Template Tag and functions.
29
require_once LSX_TEAM_PATH . '/includes/functions.php';
30
31
// Core Class.
32
require_once LSX_TEAM_PATH . '/classes/class-lsx-team-core.php';
33
34
// Post Type and Custom Fields.
35
require_once LSX_TEAM_PATH . '/classes/class-lsx-team-admin.php';
36
37
// Frontend resources.
38
require_once LSX_TEAM_PATH . '/classes/class-lsx-team-frontend.php';
39
40
// Shortcode.
41
require_once LSX_TEAM_PATH . '/classes/class-lsx-team.php';
42
43
// Widget.
44
require_once LSX_TEAM_PATH . '/classes/class-lsx-team-widget.php';
45
46
// Post reorder.
47
require_once LSX_TEAM_PATH . '/includes/class-lsx-team-scpo-engine.php';
48