Clean up spaces, tabs, indentation, and bracket formatting

This commit is contained in:
Brian Miyaji
2021-11-10 15:41:40 +09:00
parent e58beb1201
commit 3dff686a00
285 changed files with 29638 additions and 24147 deletions

View File

@@ -9,51 +9,56 @@
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'SportsPress_Importers' ) ) :
/**
* Main SportsPress Importers Class
*
* @class SportsPress_Importers
* @version 1.8.3
*/
class SportsPress_Importers {
/**
* Constructor
* Main SportsPress Importers Class
*
* @class SportsPress_Importers
* @version 1.8.3
*/
public function __construct() {
// Define constants
$this->define_constants();
class SportsPress_Importers {
add_action( 'init', array( $this, 'includes' ) );
}
/**
* Constructor
*/
public function __construct() {
// Define constants
$this->define_constants();
/**
* Define constants.
*/
private function define_constants() {
if ( !defined( 'SP_IMPORTERS_VERSION' ) )
define( 'SP_IMPORTERS_VERSION', '1.8.3' );
add_action( 'init', array( $this, 'includes' ) );
}
if ( !defined( 'SP_IMPORTERS_URL' ) )
define( 'SP_IMPORTERS_URL', plugin_dir_url( __FILE__ ) );
/**
* Define constants.
*/
private function define_constants() {
if ( ! defined( 'SP_IMPORTERS_VERSION' ) ) {
define( 'SP_IMPORTERS_VERSION', '1.8.3' );
}
if ( !defined( 'SP_IMPORTERS_DIR' ) )
define( 'SP_IMPORTERS_DIR', plugin_dir_path( __FILE__ ) );
}
if ( ! defined( 'SP_IMPORTERS_URL' ) ) {
define( 'SP_IMPORTERS_URL', plugin_dir_url( __FILE__ ) );
}
/**
* Include importers.
*/
public function includes() {
if ( is_admin() && defined( 'WP_LOAD_IMPORTERS' ) ) {
include( SP()->plugin_path() . '/includes/admin/class-sp-admin-importers.php' );
if ( ! defined( 'SP_IMPORTERS_DIR' ) ) {
define( 'SP_IMPORTERS_DIR', plugin_dir_path( __FILE__ ) );
}
}
/**
* Include importers.
*/
public function includes() {
if ( is_admin() && defined( 'WP_LOAD_IMPORTERS' ) ) {
include SP()->plugin_path() . '/includes/admin/class-sp-admin-importers.php';
}
}
}
}
endif;