Update modules and hooks

This commit is contained in:
Brian Miyaji
2018-05-02 18:39:41 +10:00
parent 1482d64b41
commit 6c4b1e981d
3 changed files with 27 additions and 1 deletions

View File

@@ -81,6 +81,7 @@ class SP_Meta_Box_Player_Statistics {
* Save meta box data
*/
public static function save( $post_id, $post ) {
do_action( 'sportspress_save_meta_player_statistics', $post_id, $_POST );
update_post_meta( $post_id, 'sp_leagues', sp_array_value( $_POST, 'sp_leagues', array() ) );
update_post_meta( $post_id, 'sp_statistics', sp_array_value( $_POST, 'sp_statistics', array() ) );
}
@@ -91,6 +92,7 @@ class SP_Meta_Box_Player_Statistics {
public static function table( $id = null, $league_id, $columns = array(), $data = array(), $placeholders = array(), $merged = array(), $leagues = array(), $has_checkboxes = false, $team_select = false, $formats = array(), $total_types = array() ) {
$readonly = false;
$teams = array_filter( get_post_meta( $id, 'sp_team', false ) );
$buffer = apply_filters( 'sportspress_meta_box_player_statistics_table_buffer', array( 'teams' => $teams, 'readonly' => $readonly ), $id );
?>
<div class="sp-data-table-container">
<table class="widefat sp-data-table">
@@ -105,6 +107,9 @@ class SP_Meta_Box_Player_Statistics {
<?php foreach ( $columns as $key => $label ): if ( $key == 'team' ) continue; ?>
<th><?php echo $label; ?></th>
<?php endforeach; ?>
<?php if ( $league_id > 0 ) { ?>
<th>&plus;&minus;</th>
<?php } ?>
</tr>
</thead>
<tfoot>
@@ -201,6 +206,10 @@ class SP_Meta_Box_Player_Statistics {
</td>
<?php endif; ?>
<?php endif; ?>
<?php
$collection = array( 'columns' => $columns, 'data' => $data, 'placeholders' => $placeholders, 'merged' => $merged, 'seasons_teams' => array(), 'has_checkboxes' => $has_checkboxes, 'formats' => $formats, 'total_types' => $total_types, 'buffer' => $buffer );
list( $columns, $data, $placeholders, $merged, $seasons_teams, $has_checkboxes, $formats, $total_types, $buffer ) = array_values( apply_filters( 'sportspress_meta_box_player_statistics_collection', $collection, $id, $league_id, $div_id, $value ) );
?>
<?php foreach ( $columns as $column => $label ): if ( $column == 'team' ) continue;
?>
<td><?php
@@ -225,10 +234,13 @@ class SP_Meta_Box_Player_Statistics {
}
?></td>
<?php endforeach; ?>
<?php do_action( 'sportspress_meta_box_player_statistics_table_row', $id, $league_id, $div_id, $team_select, $buffer, $i ); ?>
</tr>
<?php
$i++;
do_action( 'sportspress_meta_box_player_statistics_table_after_row', $id, $league_id, $div_id, $team_select, $buffer, $i );
endforeach;
do_action( 'sportspress_meta_box_player_statistics_table_tbody', $id, $league_id, $div_id, $team_select, $buffer );
?>
</tbody>
</table>

View File

@@ -106,6 +106,14 @@ class SP_Modules {
'icon' => 'sp-icon-list',
'desc' => __( 'Create team rosters, player galleries, and ranking charts.', 'sportspress' ),
),
'midseason_transfers' => array(
'label' => __( 'Midseason Transfers', 'sportspress' ),
'class' => 'SportsPress_Midseason_Transfers',
'icon' => 'sp-icon-sub',
'link' => 'https://www.themeboy.com/sportspress-extensions/midseason-transfers/',
'desc' => __( 'Statistics for players who transferred between teams during a season.', 'sportspress' ),
'default' => 'yes',
),
'staff_directories' => array(
'label' => __( 'Directories', 'sportspress' ),
'class' => 'SportsPress_Staff_Directories',

View File

@@ -69,11 +69,17 @@ if ( is_array( $leagues ) ):
'data' => $player->data( $league->term_id, false, $section_id ),
'caption' => $caption,
'scrollable' => $scrollable,
'league_id' => $league->term_id,
);
if ( ! $show_teams ) {
$args['hide_teams'] = true;
}
sp_get_template( 'player-statistics-league.php', $args );
if ( has_action( 'sportspress_player_statistics_league_template' ) ) {
do_action( 'sportspress_player_statistics_league_template', $args );
} else {
sp_get_template( 'player-statistics-league.php', $args );
}
endforeach;
if ( $show_career_totals ) {