![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/anfangola.com/wp-content/plugins/sportspress/templates/ |
<?php /** * Staff Details * * @author ThemeBoy * @package SportsPress/Templates * @version 2.7.9 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if ( get_option( 'sportspress_staff_show_details', 'yes' ) === 'no' ) { return; } if ( ! isset( $id ) ) { $id = get_the_ID(); } $defaults = array( 'show_nationality' => get_option( 'sportspress_staff_show_nationality', 'yes' ) == 'yes' ? true : false, 'show_current_teams' => get_option( 'sportspress_staff_show_current_teams', 'yes' ) == 'yes' ? true : false, 'show_past_teams' => get_option( 'sportspress_staff_show_past_teams', 'yes' ) == 'yes' ? true : false, 'show_nationality_flags' => get_option( 'sportspress_staff_show_flags', 'yes' ) == 'yes' ? true : false, 'link_teams' => get_option( 'sportspress_link_teams', 'no' ) == 'yes' ? true : false, ); extract( $defaults, EXTR_SKIP ); $countries = SP()->countries->countries; $staff = new SP_Staff( $id ); $nationalities = $staff->nationalities(); $current_teams = $staff->current_teams(); $past_teams = $staff->past_teams(); $data = array(); if ( $show_nationality && $nationalities && is_array( $nationalities ) ) : $values = array(); foreach ( $nationalities as $nationality ) : if ( 2 == strlen( $nationality ) ) : $legacy = SP()->countries->legacy; $nationality = strtolower( $nationality ); $nationality = sp_array_value( $legacy, $nationality, null ); endif; $country_name = sp_array_value( $countries, $nationality, null ); $values[] = $country_name ? ( $show_nationality_flags ? sp_flags( $nationality ) : '' ) . $country_name : '—'; endforeach; $data[ esc_attr__( 'Nationality', 'sportspress' ) ] = implode( '<br>', $values ); endif; if ( $show_current_teams && $current_teams ) : $teams = array(); foreach ( $current_teams as $team ) : $team_name = sp_team_short_name( $team ); if ( $link_teams ) { $team_name = '<a href="' . get_post_permalink( $team ) . '">' . $team_name . '</a>'; } $teams[] = $team_name; endforeach; $data[ esc_attr__( 'Current Team', 'sportspress' ) ] = implode( ', ', $teams ); endif; if ( $show_past_teams && $past_teams ) : $teams = array(); foreach ( $past_teams as $team ) : $team_name = sp_team_short_name( $team ); if ( $link_teams ) { $team_name = '<a href="' . get_post_permalink( $team ) . '">' . $team_name . '</a>'; } $teams[] = $team_name; endforeach; $data[ esc_attr__( 'Past Teams', 'sportspress' ) ] = implode( ', ', $teams ); endif; $data = apply_filters( 'sportspress_staff_details', $data, $id ); if ( empty( $data ) ) { return; } $output = '<div class="sp-list-wrapper">' . '<dl class="sp-staff-details">'; foreach ( $data as $label => $value ) : $output .= '<dt>' . $label . '</dt><dd>' . $value . '</dd>'; endforeach; $output .= '</dl></div>'; ?> <div class="sp-template sp-template-staff-details sp-template-details"> <?php echo wp_kses_post( $output ); ?> </div>