+
'sp_performance',
+ 'numberposts' => 100,
+ 'posts_per_page' => 100,
+ 'orderby' => 'menu_order',
+ 'order' => 'ASC',
+ );
- if ( $split_teams ) {
- // Split tables
- foreach( $teams as $index => $team_id ):
- if ( -1 == $team_id ) continue;
+ $columns = get_posts( $args );
+
+ // Get formats
+ $formats = array();
+
+ // Add to formats
+ foreach ( $columns as $column ) {
+ $format = get_post_meta( $column->ID, 'sp_format', true );
+ if ( '' === $format ) {
+ $format = 'number';
+ }
+ $formats[ $column->post_name ] = $format;
+ }
- // Get results for players in the team
- $players = sp_array_between( (array)get_post_meta( $id, 'sp_player', false ), 0, $index );
- $has_players = sizeof( $players ) > 1;
+ // Prepare for offense and defense sections
+ if ( -1 != $sections ) {
+
+ // Determine order of sections
+ if ( 1 == $sections ) {
+ $section_order = array( __( 'Defense', 'sportspress' ), __( 'Offense', 'sportspress' ) );
+ } else {
+ $section_order = array( __( 'Offense', 'sportspress' ), __( 'Defense', 'sportspress' ) );
+ }
+
+ // Initialize labels
+ $labels = array( array(), array() );
+
+ // Add positions if applicable
+ if ( 'yes' == get_option( 'sportspress_event_show_position', 'yes' ) ) {
+ $labels[0]['position'] = $labels[1]['position'] = __( 'Position', 'sportspress' );
+ }
- $players = apply_filters( 'sportspress_event_performance_split_team_players', $players );
+ // Get labels by section
+ foreach ( $columns as $column ):
+ $section = get_post_meta( $column->ID, 'sp_section', true );
+ if ( '' === $section ) {
+ $section = -1;
+ }
+ switch ( $section ):
+ case 1:
+ $labels[1][ $column->post_name ] = $column->post_title;
+ break;
+ case 0:
+ $labels[0][ $column->post_name ] = $column->post_title;
+ break;
+ default:
+ $labels[0][ $column->post_name ] = $column->post_title;
+ $labels[1][ $column->post_name ] = $column->post_title;
+ endswitch;
+ endforeach;
+ }
- $show_team_players = $show_players && $has_players;
+ foreach( $teams as $index => $team_id ):
+ if ( -1 == $team_id ) continue;
- if ( 0 < $team_id ) {
- $data = sp_array_combine( $players, sp_array_value( $performance, $team_id, array() ) );
- } elseif ( 0 == $team_id ) {
+ // Get results for players in the team
+ $players = sp_array_between( (array)get_post_meta( $id, 'sp_player', false ), 0, $index );
+ $has_players = sizeof( $players ) > 1;
+
+ $players = apply_filters( 'sportspress_event_performance_split_team_players', $players );
+
+ $show_team_players = $show_players && $has_players;
+
+ if ( ! $show_team_players && ! $show_staff && ! $show_total ) continue;
+
+ if ( $show_team_players || $show_total ) {
+ if ( -1 != $sections ) {
+
$data = array();
- foreach ( $players as $player_id ) {
- if ( isset( $performance[ $player_id ][ $player_id ] ) ) {
- $data[ $player_id ] = $performance[ $player_id ][ $player_id ];
+
+ // Get results for offensive players in the team
+ $offense = sp_array_between( (array)get_post_meta( $id, 'sp_offense', false ), 0, $index );
+ $data[0] = sp_array_combine( $offense, sp_array_value( $performance, $team_id, array() ) );
+
+ // Get results for defensive players in the team
+ $defense = sp_array_between( (array)get_post_meta( $id, 'sp_defense', false ), 0, $index );
+ $data[1] = sp_array_combine( $defense, sp_array_value( $performance, $team_id, array() ) );
+
+ foreach ( $section_order as $section_id => $section_label ) {
+ if ( sizeof( $data[ $section_id ] ) ) {
+ sp_get_template( 'event-performance-table.php', array(
+ 'section' => $section_label,
+ 'scrollable' => $scrollable,
+ 'sortable' => $sortable,
+ 'show_players' => $show_team_players,
+ 'show_numbers' => $show_numbers,
+ 'show_total' => $show_total,
+ 'caption' => 0 == $section_id && $team_id ? get_the_title( $team_id ) : null,
+ 'labels' => $labels[ $section_id ],
+ 'formats' => $formats,
+ 'mode' => $mode,
+ 'data' => $data[ $section_id ],
+ 'event' => $event,
+ 'link_posts' => $link_posts,
+ 'performance_ids' => isset( $performance_ids ) ? $performance_ids : null,
+ 'primary' => 'primary' == $total ? $primary : null,
+ 'class' => 'sp-template-event-performance-team-' . $index . '-section-' . $section_id,
+ ) );
}
}
} else {
- $data = sp_array_value( array_values( $performance ), $index );
- }
-
- if ( ! $show_team_players && ! $show_staff && ! $show_total ) continue;
-
- if ( $show_team_players || $show_total ) {
- if ( $split_positions ) {
- $positions = get_terms( 'sp_position', array(
- 'orderby' => 'slug',
- 'hide_empty' => 0,
- ) );
-
- foreach ( $positions as $position_index => $position ) {
- $subdata = array();
- foreach ( $data as $player_id => $player ) {
- $player_positions = (array) sp_array_value( $player, 'position' );
- $player_positions = array_filter( $player_positions );
- if ( empty( $player_positions ) ) {
- $player_positions = (array) sp_get_the_term_id( $player_id, 'sp_position' );
- }
- if ( in_array( $position->term_id, $player_positions ) ) {
- $subdata[ $player_id ] = $data[ $player_id ];
- }
- }
-
- // Initialize Sublabels
- $sublabels = $labels;
-
- // Get performance with position
- $performance_labels = get_posts( array(
- 'post_type' => 'sp_performance',
- 'posts_per_page' => -1,
- 'tax_query' => array(
- array(
- 'taxonomy' => 'sp_position',
- 'terms' => $position->term_id,
- ),
- ),
- ) );
-
- $allowed_labels = array();
- if ( ! empty( $performance_labels ) ) {
- foreach ( $performance_labels as $label ) {
- $allowed_labels[ $label->post_name ] = $label->post_title;
- }
-
- $allowed_labels = apply_filters( 'sportspress_event_performance_allowed_labels', $allowed_labels, $position_index );
-
- $sublabels = array_intersect_key( $sublabels, $allowed_labels );
- }
-
- if ( sizeof( $subdata ) ) {
- $subdata = apply_filters( 'sportspress_event_performance_split_team_split_position_subdata', $subdata, $data, $position_index );
-
- sp_get_template( 'event-performance-table.php', array(
- 'position' => sp_get_position_caption( $position->term_id ),
- 'scrollable' => $scrollable,
- 'sortable' => $sortable,
- 'show_players' => $show_team_players,
- 'show_numbers' => $show_numbers,
- 'show_total' => $show_total,
- 'caption' => 0 == $position_index && $team_id ? get_the_title( $team_id ) : null,
- 'labels' => $sublabels,
- 'mode' => $mode,
- 'data' => $subdata,
- 'event' => $event,
- 'link_posts' => $link_posts,
- 'performance_ids' => isset( $performance_ids ) ? $performance_ids : null,
- 'primary' => 'primary' == $total ? $primary : null,
- 'class' => 'sp-template-event-performance-team-' . $index . '-position-' . $position_index,
- ) );
+ if ( 0 < $team_id ) {
+ $data = sp_array_combine( $players, sp_array_value( $performance, $team_id, array() ) );
+ } elseif ( 0 == $team_id ) {
+ $data = array();
+ foreach ( $players as $player_id ) {
+ if ( isset( $performance[ $player_id ][ $player_id ] ) ) {
+ $data[ $player_id ] = $performance[ $player_id ][ $player_id ];
}
}
} else {
- sp_get_template( 'event-performance-table.php', array(
- 'scrollable' => $scrollable,
- 'sortable' => $sortable,
- 'show_players' => $show_team_players,
- 'show_numbers' => $show_numbers,
- 'show_total' => $show_total,
- 'caption' => $team_id ? get_the_title( $team_id ) : null,
- 'labels' => $labels,
- 'mode' => $mode,
- 'data' => $data,
- 'event' => $event,
- 'link_posts' => $link_posts,
- 'performance_ids' => isset( $performance_ids ) ? $performance_ids : null,
- 'primary' => 'primary' == $total ? $primary : null,
-
- ) );
- }
- }
- if ( $show_staff ):
- sp_get_template( 'event-staff.php', array( 'id' => $id, 'index' => $index ) );
- endif;
- ?>
- $player ) {
- if ( $player_id == 0 ) continue;
- $data[ $player_id ] = $player;
- }
- }
-
- if ( $split_positions ) {
- $positions = get_terms( 'sp_position', array(
- 'orderby' => 'slug',
- 'hide_empty' => 0,
- ) );
-
- foreach ( $positions as $position_index => $position ) {
- $subdata = array();
- foreach ( $data as $player_id => $player ) {
- $player_positions = (array) sp_array_value( $player, 'position' );
- $player_positions = array_filter( $player_positions );
- if ( empty( $player_positions ) ) {
- $player_positions = (array) sp_get_the_term_id( $player_id, 'sp_position' );
- }
- if ( in_array( $position->term_id, $player_positions ) ) {
- $subdata[ $player_id ] = $data[ $player_id ];
- }
+ $data = sp_array_value( array_values( $performance ), $index );
}
- $subdata = apply_filters( 'sportspress_event_performance_split_position_subdata', $subdata, $data, $position_index );
+ sp_get_template( 'event-performance-table.php', array(
+ 'scrollable' => $scrollable,
+ 'sortable' => $sortable,
+ 'show_players' => $show_team_players,
+ 'show_numbers' => $show_numbers,
+ 'show_total' => $show_total,
+ 'caption' => $team_id ? get_the_title( $team_id ) : null,
+ 'labels' => $labels,
+ 'formats' => $formats,
+ 'mode' => $mode,
+ 'data' => $data,
+ 'event' => $event,
+ 'link_posts' => $link_posts,
+ 'performance_ids' => isset( $performance_ids ) ? $performance_ids : null,
+ 'primary' => 'primary' == $total ? $primary : null,
- if ( sizeof( $subdata ) ) {
- sp_get_template( 'event-performance-table-combined.php', array(
- 'scrollable' => $scrollable,
- 'sortable' => $sortable,
- 'show_players' => $show_players,
- 'show_numbers' => $show_numbers,
- 'show_total' => $show_total,
- 'caption' => sp_get_position_caption( $position->term_id ),
- 'labels' => $labels,
- 'mode' => $mode,
- 'data' => $subdata,
- 'event' => $event,
- 'link_posts' => $link_posts,
- 'performance_ids' => isset( $performance_ids ) ? $performance_ids : null,
- 'primary' => 'primary' == $total ? $primary : null,
- ) );
- }
+ ) );
}
- } else {
- sp_get_template( 'event-performance-table-combined.php', array(
- 'scrollable' => $scrollable,
- 'sortable' => $sortable,
- 'show_players' => $show_players,
- 'show_numbers' => $show_numbers,
- 'show_total' => $show_total,
- 'caption' => __( 'Scorecard', 'sportspress' ),
- 'labels' => $labels,
- 'mode' => $mode,
- 'data' => $data,
- 'event' => $event,
- 'link_posts' => $link_posts,
- 'performance_ids' => isset( $performance_ids ) ? $performance_ids : null,
- 'primary' => 'primary' == $total ? $primary : null,
- ) );
}
- }
+ if ( $show_staff ):
+ sp_get_template( 'event-staff.php', array( 'id' => $id, 'index' => $index ) );
+ endif;
+ ?>
+