Fix bugs, use plural post slugs, move actions and filters into hooks folder

This commit is contained in:
Brian Miyaji
2014-01-09 02:37:13 +11:00
parent e76d392726
commit bfcf6e9b38
32 changed files with 390 additions and 312 deletions

View File

@@ -2,7 +2,7 @@
if ( !function_exists( 'sportspress_league_table' ) ) {
function sportspress_league_table( $id ) {
$data = sportspress_get_table( $id );
$data = sportspress_get_league_table_data( $id );
$output = '<table class="sp-league-table sp-data-table">' . '<thead>' . '<tr>';
@@ -12,6 +12,7 @@ if ( !function_exists( 'sportspress_league_table' ) ) {
// Remove the first row to leave us with the actual data
unset( $data[0] );
$output .= '<th class="column-number">' . __( '#', 'sportspress' ) . '</th>';
foreach( $labels as $key => $label ):
$output .= '<th class="column-' . ( $key ? $key : 'name' ) . '">' . $label . '</th>';
endforeach;
@@ -24,11 +25,14 @@ if ( !function_exists( 'sportspress_league_table' ) ) {
$output .= '<tr class="' . ( $i % 2 ? 'odd' : 'even' ) . '">';
// Position as number
$output .= '<td class="column-number">' . $i . '</td>';
// Thumbnail and name as link
$permalink = get_post_permalink( $team_id );
$thumbnail = get_the_post_thumbnail( $team_id, 'sp_icon' );
$name = sportspress_array_value( $row, 'name', '&nbsp;' );
$output .= '<td class="column-name">' . $i . '. ' . ( $thumbnail ? $thumbnail . ' ' : '' ) . '<a href="' . $permalink . '">' . $name . '</a></td>';
$thumbnail = get_the_post_thumbnail( $team_id, 'thumbnail', array( 'class' => 'logo' ) );
$name = sportspress_array_value( $row, 'name', sportspress_array_value( $row, 'name', '&nbsp;' ) );
$output .= '<td class="column-name">' . ( $thumbnail ? $thumbnail . ' ' : '' ) . '<a href="' . $permalink . '">' . $name . '</a></td>';
foreach( $labels as $key => $value ):
if ( $key == 'name' )
@@ -52,7 +56,7 @@ if ( !function_exists( 'sportspress_league_table' ) ) {
if ( !function_exists( 'sportspress_player_list' ) ) {
function sportspress_player_list( $id ) {
$data = sportspress_get_list( $id );
$data = sportspress_get_player_list_data( $id );
$output = '<table class="sp-player-list sp-data-table">' . '<thead>' . '<tr>';
@@ -62,25 +66,32 @@ if ( !function_exists( 'sportspress_player_list' ) ) {
// Remove the first row to leave us with the actual data
unset( $data[0] );
foreach( $labels as $label ):
$output .= '<th>' . $label . '</th>';
$output .= '<th class="column-number">' . __( '#', 'sportspress' ) . '</th>';
foreach( $labels as $key => $label ):
$output .= '<th class="column-' . ( $key ? $key : 'name' ) . '">' . $label . '</th>';
endforeach;
$output .= '</tr>' . '</th>' . '</thead>' . '<tbody>';
$i = 1;
foreach( $data as $player_id => $row ):
$output .= '<tr>';
// Player number
$number = get_post_meta( $player_id, 'sp_number', true );
$output .= '<td class="column-number">' . ( $number ? $number : '&nbsp;' ) . '</td>';
// Name as link
$permalink = get_post_permalink( $player_id );
$number = get_post_meta( $player_id, 'sp_number', true );
$output .= '<td>' . ( $number ? $number . '. ' : '' ) . '<a href="' . $permalink . '">' . sportspress_array_value( $row, 'name', '&nbsp;' ) . '</a></td>';
$name = sportspress_array_value( $row, 'name', sportspress_array_value( $row, 'name', '&nbsp;' ) );
$output .= '<td class="column-name">' . '<a href="' . $permalink . '">' . $name . '</a></td>';
foreach( $labels as $key => $value ):
if ( $key == 'name' )
continue;
$output .= '<td>' . sportspress_array_value( $row, $key, '—' ) . '</td>';
$output .= '<td class="column-' . $key . '">' . sportspress_array_value( $row, $key, '—' ) . '</td>';
endforeach;
$output .= '</tr>';