Disable player data team linking in api context

This commit is contained in:
Brian Miyaji
2016-04-11 19:48:16 +10:00
parent 77802d05f2
commit 96dea23046

View File

@@ -109,7 +109,7 @@ class SP_Player extends SP_Custom_Post {
* @param bool $admin * @param bool $admin
* @return array * @return array
*/ */
public function data( $league_id, $admin = false, $section = -1 ) { public function data( $league_id, $admin = false, $section = -1, $context = null ) {
$seasons = (array)get_the_terms( $this->ID, 'sp_season' ); $seasons = (array)get_the_terms( $this->ID, 'sp_season' );
$metrics = (array)get_post_meta( $this->ID, 'sp_metrics', true ); $metrics = (array)get_post_meta( $this->ID, 'sp_metrics', true );
@@ -500,7 +500,7 @@ class SP_Player extends SP_Custom_Post {
if ( $team_id ): if ( $team_id ):
$team_name = get_the_title( $team_id ); $team_name = get_the_title( $team_id );
if ( get_option( 'sportspress_link_teams', 'no' ) == 'yes' ? true : false ): if ( 'api' !== $context && get_option( 'sportspress_link_teams', 'no' ) == 'yes' ? true : false ):
$team_permalink = get_permalink( $team_id ); $team_permalink = get_permalink( $team_id );
$team_name = '<a href="' . $team_permalink . '">' . $team_name . '</a>'; $team_name = '<a href="' . $team_permalink . '">' . $team_name . '</a>';
endif; endif;
@@ -518,10 +518,10 @@ class SP_Player extends SP_Custom_Post {
// Use static data if key exists and value is not empty, else use placeholder // Use static data if key exists and value is not empty, else use placeholder
if ( array_key_exists( $season_id, $data ) && array_key_exists( $key, $data[ $season_id ] ) && $data[ $season_id ][ $key ] != '' ): if ( array_key_exists( $season_id, $data ) && array_key_exists( $key, $data[ $season_id ] ) && $data[ $season_id ][ $key ] != '' ):
$merged[ $season_id ][ $key ] = $data[ $season_id ][ $key ]; $value = $data[ $season_id ][ $key ];
else:
$merged[ $season_id ][ $key ] = $value;
endif; endif;
$merged[ $season_id ][ $key ] = $value;
endforeach; endforeach;
@@ -587,7 +587,7 @@ class SP_Player extends SP_Custom_Post {
if ( is_array( $terms ) ) { if ( is_array( $terms ) ) {
foreach ( $terms as $term ) { foreach ( $terms as $term ) {
$statistics[ $term->term_id ] = $this->data( $term->term_id ); $statistics[ $term->term_id ] = $this->data( $term->term_id, false, -1, 'api' );
} }
} }