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

@@ -8,7 +8,9 @@
* @version 2.5.5
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Get all SportsPress screen ids
@@ -16,46 +18,49 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
* @return array
*/
function sp_get_screen_ids() {
return apply_filters( 'sportspress_screen_ids', array(
'admin',
'widgets',
'dashboard',
'dashboard_page_sp-about',
'dashboard_page_sp-credits',
'dashboard_page_sp-translators',
'toplevel_page_sportspress',
'edit-sp_result',
'sp_result',
'edit-sp_outcome',
'sp_outcome',
'edit-sp_performance',
'sp_performance',
'edit-sp_column',
'sp_column',
'edit-sp_metric',
'sp_metric',
'edit-sp_statistic',
'sp_statistic',
'edit-sp_event',
'sp_event',
'edit-sp_calendar',
'sp_calendar',
'edit-sp_team',
'sp_team',
'edit-sp_table',
'sp_table',
'edit-sp_player',
'sp_player',
'edit-sp_list',
'sp_list',
'edit-sp_staff',
'sp_staff',
'edit-sp_venue',
'edit-sp_league',
'edit-sp_season',
'edit-sp_position',
'edit-sp_role',
) );
return apply_filters(
'sportspress_screen_ids',
array(
'admin',
'widgets',
'dashboard',
'dashboard_page_sp-about',
'dashboard_page_sp-credits',
'dashboard_page_sp-translators',
'toplevel_page_sportspress',
'edit-sp_result',
'sp_result',
'edit-sp_outcome',
'sp_outcome',
'edit-sp_performance',
'sp_performance',
'edit-sp_column',
'sp_column',
'edit-sp_metric',
'sp_metric',
'edit-sp_statistic',
'sp_statistic',
'edit-sp_event',
'sp_event',
'edit-sp_calendar',
'sp_calendar',
'edit-sp_team',
'sp_team',
'edit-sp_table',
'sp_table',
'edit-sp_player',
'sp_player',
'edit-sp_list',
'sp_list',
'edit-sp_staff',
'sp_staff',
'edit-sp_venue',
'edit-sp_league',
'edit-sp_season',
'edit-sp_position',
'edit-sp_role',
)
);
}
function add_codemirror_to_custom_css() {
@@ -68,11 +73,11 @@ function add_codemirror_to_custom_css() {
wp_add_inline_script(
'code-editor',
sprintf(
'jQuery( function() { wp.codeEditor.initialize( "sportspress_custom_css", %s ); } );',
wp_json_encode( $settings )
'jQuery( function() { wp.codeEditor.initialize( "sportspress_custom_css", %s ); } );',
wp_json_encode( $settings )
)
);
}
if ( function_exists( 'wp_enqueue_code_editor' ) ) {
add_action( 'sportspress_settings_general', 'add_codemirror_to_custom_css' );
}
add_action( 'sportspress_settings_general', 'add_codemirror_to_custom_css' );
}