File "event-officials-table.php"

Full Path: /home/londdqdw/public_html/06/wp-content/plugins/sportspress/templates/event-officials-table.php
File size: 1.26 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Event Officials Table
 *
 * @author      ThemeBoy
 * @package     SportsPress/Templates
 * @version   2.5
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

$scrollable = get_option( 'sportspress_enable_scrollable_tables', 'yes' ) == 'yes' ? true : false;
?>
<div class="sp-template sp-template-event-officials">
	<h4 class="sp-table-caption"><?php esc_attr_e( 'Officials', 'sportspress' ); ?></h4>
	<div class="sp-table-wrapper">
		<table class="sp-event-officials sp-data-table<?php echo $scrollable ? ' sp-scrollable-table' : ''; ?>">
			<thead>
				<tr>
					<?php
					foreach ( $labels as $label ) {
						echo '<th class="data-name">' . wp_kses_post( $label ) . '</th>';
					}
					?>
				</tr>
			</thead>
			<tbody>
				<tr>
					<?php
					foreach ( $data as $appointed_officials ) {
						foreach ( $appointed_officials as $official_id => $official_name ) {
							if ( $link_officials && sp_post_exists( $official_id ) ) {
								$appointed_officials[ $official_id ] = '<a href="' . get_post_permalink( $official_id ) . '">' . $official_name . '</a>';
							}
						}
						echo '<td class="data-name">' . wp_kses_post( implode( '<br>', $appointed_officials ) ) . '</td>';
					}
					?>
				</tr>
			</tbody>
		</table>
	</div>
</div>