Change played to appearances

This commit is contained in:
Takumi
2013-08-22 22:55:13 +10:00
parent 937c00bad0
commit 90f59d5648

View File

@@ -295,7 +295,7 @@ if ( !function_exists( 'sp_get_stats_row' ) ) {
endforeach; endforeach;
// Get team stats from all attended events // Get team stats from all attended events
$vars['played'] = sizeof( $posts ); $vars['appearances'] = sizeof( $posts );
$vars['wins'] = sizeof( array_filter( $posts, function( $post ) { return array_count_values( $post->sp_result ) > 1 && max( $post->sp_result ) == $post->sp_result[ $post->sp_team_index ]; } ) ); $vars['wins'] = sizeof( array_filter( $posts, function( $post ) { return array_count_values( $post->sp_result ) > 1 && max( $post->sp_result ) == $post->sp_result[ $post->sp_team_index ]; } ) );
$vars['ties'] = sizeof( array_filter( $posts, function( $post ) { return array_count_values( $post->sp_result ) == 1; } ) ); $vars['ties'] = sizeof( array_filter( $posts, function( $post ) { return array_count_values( $post->sp_result ) == 1; } ) );
$vars['losses'] = sizeof( array_filter( $posts, function( $post ) { return array_count_values( $post->sp_result ) > 1 && min( $post->sp_result ) == $post->sp_result[ $post->sp_team_index ]; } ) ); $vars['losses'] = sizeof( array_filter( $posts, function( $post ) { return array_count_values( $post->sp_result ) > 1 && min( $post->sp_result ) == $post->sp_result[ $post->sp_team_index ]; } ) );
@@ -331,8 +331,8 @@ if ( !function_exists( 'sp_get_stats_row' ) ) {
endforeach; endforeach;
endforeach; endforeach;
// Add played event count to vars // Add appearances event count to vars
$vars['played'] = sizeof( $posts ); $vars['appearances'] = sizeof( $posts );
// Get EOS array // Get EOS array
$rows = sp_get_eos_array( get_option( 'sp_player_stats_columns' ) ); $rows = sp_get_eos_array( get_option( 'sp_player_stats_columns' ) );
@@ -349,7 +349,7 @@ if ( !function_exists( 'sp_get_stats_row' ) ) {
$dynamic = array(); $dynamic = array();
foreach ( $rows as $key => $value ): foreach ( $rows as $key => $value ):
$row = explode( ':', $value ); $row = explode( ':', $value );
$dynamic[ $key ] = $eos->solveIF( sp_array_value( $row, 1, '$played'), $vars ); $dynamic[ $key ] = $eos->solveIF( sp_array_value( $row, 1, '$appearances'), $vars );
endforeach; endforeach;
if ( $static ): if ( $static ):