Bring back career totals table
This commit is contained in:
@@ -36,6 +36,11 @@ class SP_Meta_Box_Player_Statistics {
|
||||
self::table( $post->ID, $league->term_id, $columns, $data, $placeholders, $merged, $seasons_teams, $has_checkboxes && $i == 0, true );
|
||||
$i ++;
|
||||
endforeach;
|
||||
?>
|
||||
<p><strong><?php _e( 'Career Total', 'sportspress' ); ?></strong></p>
|
||||
<?php
|
||||
list( $columns, $data, $placeholders, $merged, $seasons_teams ) = $player->data( 0, true );
|
||||
self::table( $post->ID, 0, $columns, $data, $placeholders, $merged, $seasons_teams );
|
||||
} else {
|
||||
// Determine order of sections
|
||||
if ( 1 == $sections ) {
|
||||
@@ -56,6 +61,11 @@ class SP_Meta_Box_Player_Statistics {
|
||||
self::table( $post->ID, $league->term_id, $columns, $data, $placeholders, $merged, $seasons_teams, $has_checkboxes && $i == 0 && $s == 0, $s == 0 );
|
||||
$i ++;
|
||||
endforeach;
|
||||
?>
|
||||
<p><strong><?php _e( 'Career Total', 'sportspress' ); ?> — <?php echo $section_label; ?></strong></p>
|
||||
<?php
|
||||
list( $columns, $data, $placeholders, $merged, $seasons_teams ) = $player->data( 0, true, $section_id );
|
||||
self::table( $post->ID, 0, $columns, $data, $placeholders, $merged, $seasons_teams, $has_checkboxes && $i == 0 && $s == 0, $s == 0 );
|
||||
$s ++;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,6 +14,8 @@ $output = '<h4 class="sp-table-caption">' . $caption . '</h4>' .
|
||||
'<table class="sp-player-statistics sp-data-table' . ( $scrollable ? ' sp-scrollable-table' : '' ) . '">' . '<thead>' . '<tr>';
|
||||
|
||||
foreach( $labels as $key => $label ):
|
||||
if ( isset( $hide_teams ) && 'team' == $key )
|
||||
continue;
|
||||
$output .= '<th class="data-' . $key . '">' . $label . '</th>';
|
||||
endforeach;
|
||||
|
||||
@@ -26,6 +28,8 @@ foreach( $data as $season_id => $row ):
|
||||
$output .= '<tr class="' . ( $i % 2 == 0 ? 'odd' : 'even' ) . '">';
|
||||
|
||||
foreach( $labels as $key => $value ):
|
||||
if ( isset( $hide_teams ) && 'team' == $key )
|
||||
continue;
|
||||
$output .= '<td class="data-' . $key . ( -1 === $season_id ? ' sp-highlight' : '' ) . '">' . sp_array_value( $row, $key, '' ) . '</td>';
|
||||
endforeach;
|
||||
|
||||
|
||||
@@ -55,10 +55,16 @@ if ( is_array( $leagues ) ):
|
||||
|
||||
sp_get_template( 'player-statistics-league.php', array(
|
||||
'data' => $player->data( $league->term_id, false, $section_id ),
|
||||
'league' => $league,
|
||||
'caption' => $caption,
|
||||
'scrollable' => $scrollable,
|
||||
) );
|
||||
endforeach;
|
||||
|
||||
sp_get_template( 'player-statistics-league.php', array(
|
||||
'data' => $player->data( 0, false, $section_id ),
|
||||
'caption' => __( 'Career Total', 'sportspress' ),
|
||||
'scrollable' => $scrollable,
|
||||
'hide_teams' => true,
|
||||
) );
|
||||
}
|
||||
endif;
|
||||
Reference in New Issue
Block a user