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,61 +9,66 @@
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'SportsPress_Default_Nationality' ) ) :
/**
* Main SportsPress Default Nationality Class
*
* @class SportsPress_Default_Nationality
* @version 2.6.18
*/
class SportsPress_Default_Nationality {
/**
* Constructor
* Main SportsPress Default Nationality Class
*
* @class SportsPress_Default_Nationality
* @version 2.6.18
*/
public function __construct() {
// Define constants
$this->define_constants();
class SportsPress_Default_Nationality {
add_filter( 'sportspress_general_options', array( $this, 'add_general_options' ) );
/**
* Constructor
*/
public function __construct() {
// Define constants
$this->define_constants();
add_filter( 'sportspress_general_options', array( $this, 'add_general_options' ) );
}
/**
* Define constants.
*/
private function define_constants() {
if ( ! defined( 'SP_DEFAULT_NATIONALITY_VERSION' ) ) {
define( 'SP_DEFAULT_NATIONALITY_VERSION', '2.6.18' );
}
if ( ! defined( 'SP_DEFAULT_NATIONALITY_URL' ) ) {
define( 'SP_DEFAULT_NATIONALITY_URL', plugin_dir_url( __FILE__ ) );
}
if ( ! defined( 'SP_DEFAULT_NATIONALITY_DIR' ) ) {
define( 'SP_DEFAULT_NATIONALITY_DIR', plugin_dir_path( __FILE__ ) );
}
}
/**
* Add option to SportsPress General Settings.
*/
public function add_general_options( $settings ) {
$countries[''] = __( '— None —', 'sportspress' );
$sp_countries = new SP_Countries();
$countries = array_merge( $countries, $sp_countries->countries );
$settings[] = array(
'title' => __( 'Default Nationality', 'sportspress' ),
'id' => 'sportspress_default_nationality',
'default' => '',
'type' => 'select',
'options' => $countries,
);
return $settings;
}
}
/**
* Define constants.
*/
private function define_constants() {
if ( !defined( 'SP_DEFAULT_NATIONALITY_VERSION' ) )
define( 'SP_DEFAULT_NATIONALITY_VERSION', '2.6.18' );
if ( !defined( 'SP_DEFAULT_NATIONALITY_URL' ) )
define( 'SP_DEFAULT_NATIONALITY_URL', plugin_dir_url( __FILE__ ) );
if ( !defined( 'SP_DEFAULT_NATIONALITY_DIR' ) )
define( 'SP_DEFAULT_NATIONALITY_DIR', plugin_dir_path( __FILE__ ) );
}
/**
* Add option to SportsPress General Settings.
*/
public function add_general_options( $settings ) {
$countries[''] = __( '— None —', 'sportspress' );
$sp_countries = new SP_Countries();
$countries = array_merge ( $countries, $sp_countries->countries );
$settings[]=array(
'title' => __( 'Default Nationality', 'sportspress' ),
'id' => 'sportspress_default_nationality',
'default' => '',
'type' => 'select',
'options' => $countries,
);
return $settings;
}
}
endif;
new SportsPress_Default_Nationality();