![]() 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/askdragao.com/wp-content/plugins/sportspress/templates/ |
<?php /** * Player Events * * @author ThemeBoy * @package SportsPress/Templates * @version 2.2 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if ( ! isset( $id ) ) { $id = get_the_ID(); } $format = get_option( 'sportspress_player_events_format', 'blocks' ); if ( 'calendar' === $format ) { sp_get_template( 'event-calendar.php', array( 'player' => $id ) ); } elseif ( 'list' === $format ) { $args = array( 'player' => $id, 'title_format' => 'homeaway', 'time_format' => 'separate', 'columns' => array( 'event', 'time', 'results' ), 'order' => 'DESC', ); $args = apply_filters( 'sp_player_events_list_args', $args ); sp_get_template( 'event-list.php', $args ); } else { sp_get_template( 'event-fixtures-results.php', array( 'player' => $id ) ); }