Passed
Push — master ( 1a19f8...92e7ad )
by Virginia
03:44
created

lsx-customizer.php (2 issues)

1
<?php
2
/**
3
 * Plugin Name: LSX Customizer
4
 * Plugin URI:  https://www.lsdev.biz/product/lsx-site-customizer/
5
 * Description: The LSX Customizer extension gives you complete control over the appearance of your LSX-powered WordPress site
6
 * Version:     1.4.0
7
 * Author:      LightSpeed
8
 * Author URI:  https://www.lsdev.biz/
9
 * License: GPLv3 or later
10
 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
11
 * Text Domain: lsx-customizer
12
 * Domain Path: /languages
13
 *
14
 * @package lsx-customizer
15
 */
16
17
// If this file is called directly, abort.
18
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...
19
	die;
20
}
21
22
define( 'LSX_CUSTOMIZER_PATH', plugin_dir_path( __FILE__ ) );
23
define( 'LSX_CUSTOMIZER_CORE', __FILE__ );
24
define( 'LSX_CUSTOMIZER_URL', plugin_dir_url( __FILE__ ) );
25
define( 'LSX_CUSTOMIZER_VER', '1.4.0' );
26
27
28
/* ======================= Below is the Plugin Class init ========================= */
29
30
require_once LSX_CUSTOMIZER_PATH . 'classes/class-lsx-customizer.php';
31