170 lines
7.1 KiB
PHP
170 lines
7.1 KiB
PHP
<?php
|
|
/**
|
|
* Deprecated functions
|
|
*
|
|
* Where functions come to retire.
|
|
*
|
|
* @author ThemeBoy
|
|
* @category Core
|
|
* @package ThemeBoy/Functions
|
|
* @version 0.7.4
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
/* Shortcodes */
|
|
add_shortcode( 'events-calendar', 'SP_Shortcodes::event_calendar' );
|
|
add_shortcode( 'events-list', 'SP_Shortcodes::event_list' );
|
|
add_shortcode( 'league-table', 'SP_Shortcodes::league_table' );
|
|
add_shortcode( 'player-list', 'SP_Shortcodes::player_list' );
|
|
add_shortcode( 'player-gallery', 'SP_Shortcodes::player_gallery' );
|
|
|
|
/* Functions */
|
|
function sportspress_flush_rewrite_rules() {
|
|
return sp_flush_rewrite_rules();
|
|
}
|
|
function sportspress_nonce() {
|
|
return sp_nonce();
|
|
}
|
|
function sportspress_array_between( $array = array(), $delimiter = 0, $index = 0 ) {
|
|
return sp_array_between( $array, $delimiter, $index );
|
|
}
|
|
function sportspress_array_value( $arr = array(), $key = 0, $default = null ) {
|
|
return sp_array_value( $arr, $key, $default );
|
|
}
|
|
function sportspress_array_combine( $keys = array(), $values = array() ) {
|
|
return sp_array_combine( $keys, $values );
|
|
}
|
|
function sportspress_numbers_to_words( $str ) {
|
|
return sp_numbers_to_words( $str );
|
|
}
|
|
function sportspress_get_the_term_id( $post_id, $taxonomy, $index ) {
|
|
return sp_get_the_term_id( $post_id, $taxonomy, $index );
|
|
}
|
|
function sportspress_get_post_views( $post_id ) {
|
|
return sp_get_post_views( $post_id );
|
|
}
|
|
function sportspress_set_post_views( $post_id ) {
|
|
return sp_set_post_views( $post_id );
|
|
}
|
|
function sportspress_get_post_precision( $post_id ) {
|
|
return sp_get_post_precision( $post_id );
|
|
}
|
|
function sportspress_get_post_calculate( $post_id ) {
|
|
return sp_get_post_calculate( $post_id );
|
|
}
|
|
function sportspress_get_post_equation( $post_id ) {
|
|
return sp_get_post_equation( $post_id );
|
|
}
|
|
function sportspress_get_post_order( $post_id ) {
|
|
return sp_get_post_order( $post_id );
|
|
}
|
|
function sportspress_dropdown_taxonomies( $args = array() ) {
|
|
return sp_dropdown_taxonomies( $args );
|
|
}
|
|
function sportspress_dropdown_pages( $args = array() ) {
|
|
return sp_dropdown_pages( $args );
|
|
}
|
|
function sportspress_posts( $post_id = null, $meta = 'post' ) {
|
|
return sp_posts( $post_id, $meta );
|
|
}
|
|
function sportspress_post_checklist( $post_id = null, $meta = 'post', $display = 'block', $filter = null, $index = null ) {
|
|
return sp_post_checklist( $post_id, $meta, $display, $filter, $index );
|
|
}
|
|
function sportspress_calculate_selector( $post_id, $selected = null ) {
|
|
return sp_calculate_selector( $post_id, $selected);
|
|
}
|
|
function sportspress_get_equation_optgroup_array( $post_id, $type = null, $variations = null, $defaults = null, $totals = true ) {
|
|
return sp_get_equation_optgroup_array( $post_id, $type, $variations, $defaults, $totals );
|
|
}
|
|
function sportspress_equation_selector( $post_id, $selected = null, $groups = array() ) {
|
|
return sp_equation_selector( $post_id, $selected, $groups );
|
|
}
|
|
function sportspress_get_var_labels( $post_type ) {
|
|
return sp_get_var_labels( $post_type );
|
|
}
|
|
function sportspress_get_var_equations( $post_type ) {
|
|
return sp_get_var_equations( $post_type );
|
|
}
|
|
function sportspress_edit_calendar_table( $data = array(), $usecolumns = null ) {
|
|
return sp_edit_calendar_table( $data, $usecolumns );
|
|
}
|
|
function sportspress_edit_league_table( $columns = array(), $usecolumns = null, $data = array(), $placeholders = array() ) {
|
|
return sp_edit_league_table( $columns, $usecolumns, $data, $placeholders );
|
|
}
|
|
function sportspress_edit_player_list_table( $columns = array(), $usecolumns = null, $data = array(), $placeholders = array() ) {
|
|
return sp_edit_player_list_table( $columns, $usecolumns, $data, $placeholders );
|
|
}
|
|
function sportspress_edit_team_columns_table( $league_id, $columns = array(), $data = array(), $placeholders = array(), $merged = array(), $seasons = array(), $readonly = true ) {
|
|
return sp_edit_team_columns_table( $league_id, $columns, $data, $placeholders, $merged, $seasons, $readonly );
|
|
}
|
|
function sportspress_edit_player_performance_table( $id = null, $league_id, $columns = array(), $data = array(), $placeholders = array(), $merged = array(), $seasons_teams = array(), $readonly = true ) {
|
|
return sp_edit_player_performance_table( $id, $league_id, $columns, $data, $placeholders, $merged, $seasons_teams, $readonly );
|
|
}
|
|
function sportspress_edit_event_results_table( $columns = array(), $data = array() ) {
|
|
return sp_edit_event_results_table( $columns, $data );
|
|
}
|
|
function sportspress_event_player_status_selector( $team_id, $player_id, $value = null ) {
|
|
return sp_event_player_status_selector( $team_id, $player_id, $value );
|
|
}
|
|
function sportspress_event_player_sub_selector( $team_id, $player_id, $value, $data = array() ) {
|
|
return sp_event_player_sub_selector( $team_id, $player_id, $value, $data );
|
|
}
|
|
function sportspress_edit_event_players_table( $columns = array(), $data = array(), $team_id ) {
|
|
return sp_edit_event_players_table( $columns, $data, $team_id );
|
|
}
|
|
function sportspress_post_adder( $post_type = 'post', $label = null ) {
|
|
return sp_post_adder( $post_type, $label );
|
|
}
|
|
function sportspress_taxonomy_adder( $taxonomy = 'category', $post_type = 'post', $label = null ) {
|
|
return sp_taxonomy_adder( $taxonomy, $post_type, $label );
|
|
}
|
|
function sportspress_update_post_meta( $post_id, $meta_key, $meta_value, $default = null ) {
|
|
return sp_update_post_meta( $post_id, $meta_key, $meta_value, $default );
|
|
}
|
|
function sportspress_update_post_meta_recursive( $post_id, $meta_key, $meta_value ) {
|
|
return sp_update_post_meta_recursive( $post_id, $meta_key, $meta_value );
|
|
}
|
|
function sportspress_get_eos_safe_slug( $title, $post_id = 'var' ) {
|
|
return sp_get_eos_safe_slug( $title, $post_id );
|
|
}
|
|
function sportspress_solve( $equation, $vars, $precision = 0 ) {
|
|
return sp_solve( $equation, $vars, $precision );
|
|
}
|
|
function sportspress_get_calendar_data( $post_id = null, $admin = false ) {
|
|
return sp_get_calendar_data( $post_id, $admin );
|
|
}
|
|
function sportspress_get_team_columns_data( $post_id, $league_id, $admin = false ) {
|
|
return sp_get_team_columns_data( $post_id, $league_id, $admin );
|
|
}
|
|
function sportspress_get_league_table_data( $post_id, $breakdown = false ) {
|
|
return sp_get_league_table_data( $post_id, $breakdown );
|
|
}
|
|
function sportspress_sort_table_teams ( $a, $b ) {
|
|
return sp_sort_table_teams( $a, $b );
|
|
}
|
|
function sportspress_get_player_list_data( $post_id, $admin = false ) {
|
|
return sp_get_player_list_data( $post_id, $admin );
|
|
}
|
|
function sportspress_get_player_roster_data( $post_id, $admin = false ) {
|
|
return sp_get_player_roster_data( $post_id, $admin );
|
|
}
|
|
function sportspress_sort_list_players ( $a, $b ) {
|
|
return sp_sort_list_players( $a, $b );
|
|
}
|
|
function sportspress_get_player_metrics_data( $post_id ) {
|
|
return sp_get_player_metrics_data( $post_id );
|
|
}
|
|
function sportspress_get_player_performance_data( $post_id, $league_id, $admin = false ) {
|
|
return sp_get_player_performance_data( $post_id, $league_id, $admin );
|
|
}
|
|
function sportspress_get_next_event( $args = array() ) {
|
|
return sp_get_next_event( $args );
|
|
}
|
|
function sportspress_delete_duplicate_post( &$post ) {
|
|
return sp_delete_duplicate_post( $post );
|
|
}
|
|
function sportspress_highlight_admin_menu( $p = 'options-general.php', $s = 'sportspress' ) {
|
|
return sp_highlight_admin_menu( $p, $s );
|
|
}
|