57 lines
1.8 KiB
PHP
57 lines
1.8 KiB
PHP
<?php
|
|
function sp_table_cpt_init() {
|
|
$name = __( 'Tables', 'sportspress' );
|
|
$singular_name = __( 'Table', 'sportspress' );
|
|
$labels = sp_get_cpt_labels( $name, $singular_name );
|
|
$args = array(
|
|
'label' => $name,
|
|
'labels' => $labels,
|
|
'public' => true,
|
|
'hierarchical' => false,
|
|
'supports' => array( 'title', 'author', 'thumbnail', 'page-attributes' ),
|
|
'register_meta_box_cb' => 'sp_table_meta_init',
|
|
'rewrite' => array( 'slug' => 'table' )
|
|
);
|
|
register_post_type( 'sp_table', $args );
|
|
}
|
|
add_action( 'init', 'sp_table_cpt_init' );
|
|
|
|
function sp_table_edit_columns() {
|
|
$columns = array(
|
|
'cb' => '<input type="checkbox" />',
|
|
'title' => __( 'Title' ),
|
|
'sp_team' => __( 'Teams', 'sportspress' ),
|
|
'sp_league' => __( 'Leagues', 'sportspress' ),
|
|
);
|
|
return $columns;
|
|
}
|
|
add_filter( 'manage_edit-sp_table_columns', 'sp_table_edit_columns' );
|
|
|
|
function sp_table_meta_init() {
|
|
remove_meta_box( 'submitdiv', 'sp_table', 'side' );
|
|
add_meta_box( 'submitdiv', __( 'Event', 'sportspress' ), 'post_submit_meta_box', 'sp_table', 'side', 'high' );
|
|
add_meta_box( 'sp_teamdiv', __( 'Teams', 'sportspress' ), 'sp_table_team_meta', 'sp_table', 'side', 'high' );
|
|
add_meta_box( 'sp_statsdiv', __( 'Statistics', 'sportspress' ), 'sp_table_stats_meta', 'sp_table', 'normal', 'high' );
|
|
}
|
|
|
|
function sp_table_team_meta( $post ) {
|
|
sp_post_checklist( $post->ID, 'sp_team' );
|
|
sp_post_adder( 'sp_team' );
|
|
sp_nonce();
|
|
}
|
|
|
|
function sp_table_stats_meta( $post ) {
|
|
$ids = (array)get_post_meta( $post->ID, 'sp_team', false );
|
|
$stats = (array)get_post_meta( $post->ID, 'sp_stats', true );
|
|
$stats = $stats[0];
|
|
$data = array();
|
|
foreach ( $ids as $id ):
|
|
if ( array_key_exists( $id, $stats ) )
|
|
$data[ $id ] = $stats[ $id ];
|
|
else
|
|
$data[ $id ] = array();
|
|
endforeach;
|
|
sp_data_table( $data, 0, array( 'Team', 'P', 'W', 'D', 'L', 'F', 'A', 'GD', 'Pts' ) );
|
|
sp_post_adder( 'sp_team' );
|
|
}
|
|
?>
|