Mark subs in event performance
This commit is contained in:
@@ -61,13 +61,29 @@
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* League table */
|
||||
/* League Table */
|
||||
.sp-league-table .team-logo {
|
||||
vertical-align: middle;
|
||||
height: 2.5em;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
/* Event Performance */
|
||||
.sp-event-performance .sub-in,
|
||||
.sp-event-performance .sub-out {
|
||||
cursor: default;
|
||||
}
|
||||
.sp-event-performance .sub-in:before,
|
||||
.sp-event-performance .sub-out:before {
|
||||
font-family: dashicons;
|
||||
}
|
||||
.sp-event-performance .sub-in:before {
|
||||
content: "\f140";
|
||||
}
|
||||
.sp-event-performance .sub-out:before {
|
||||
content: "\f142";
|
||||
}
|
||||
|
||||
/* Event Calendar */
|
||||
.sp-event-calendar tbody td, .sp-event-calendar thead th {
|
||||
text-align: center;
|
||||
|
||||
@@ -56,6 +56,7 @@ class SP_Frontend_Scripts {
|
||||
wp_localize_script( 'sportspress', 'localized_strings', array( 'days' => __( 'days', 'sportspress' ), 'hrs' => __( 'hrs', 'sportspress' ), 'mins' => __( 'mins', 'sportspress' ), 'secs' => __( 'secs', 'sportspress' ), 'previous' => __( 'Previous', 'sportspress' ), 'next' => __( 'Next', 'sportspress' ) ) );
|
||||
|
||||
// CSS Styles
|
||||
wp_enqueue_style( 'dashicons' );
|
||||
$enqueue_styles = $this->get_styles();
|
||||
|
||||
if ( $enqueue_styles ):
|
||||
|
||||
@@ -12,6 +12,8 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
if ( ! isset( $id ) )
|
||||
$id = get_the_ID();
|
||||
|
||||
$event = new SP_Event( $id );
|
||||
|
||||
$teams = (array)get_post_meta( $id, 'sp_team', false );
|
||||
$staff = (array)get_post_meta( $id, 'sp_staff', false );
|
||||
$stats = (array)get_post_meta( $id, 'sp_players', true );
|
||||
@@ -47,6 +49,17 @@ foreach( $teams as $key => $team_id ):
|
||||
<?php if ( $has_players ): ?>
|
||||
<tbody>
|
||||
<?php
|
||||
|
||||
$lineups = array_filter( $data, array( $event, 'lineup_filter' ) );
|
||||
$subs = array_filter( $data, array( $event, 'sub_filter' ) );
|
||||
|
||||
$lineup_sub_relation = array();
|
||||
foreach ( $subs as $sub_id => $sub ):
|
||||
if ( ! $sub_id )
|
||||
continue;
|
||||
$lineup_sub_relation[ sp_array_value( $sub, 'sub', 0 ) ] = $sub_id;
|
||||
endforeach;
|
||||
|
||||
$i = 0;
|
||||
foreach( $data as $player_id => $row ):
|
||||
|
||||
@@ -68,6 +81,14 @@ foreach( $teams as $key => $team_id ):
|
||||
if ( $link_posts ):
|
||||
$permalink = get_post_permalink( $player_id );
|
||||
$name = '<a href="' . $permalink . '">' . $name . '</a>';
|
||||
if ( isset( $row['status'] ) && $row['status'] == 'sub' ):
|
||||
$name = '(' . $name . ')';
|
||||
endif;
|
||||
if ( array_key_exists( $player_id, $lineup_sub_relation ) ):
|
||||
$name .= ' <span class="sub-in" title="' . get_the_title( $lineup_sub_relation[ $player_id ] ) . '">' . get_post_meta( $lineup_sub_relation[ $player_id ], 'sp_number', true ) . '</span>';
|
||||
elseif ( isset( $row['sub'] ) && $row['sub'] ):
|
||||
$name .= ' <span class="sub-out" title="' . get_the_title( $row[ 'sub' ] ) . '">' . get_post_meta( $row['sub'], 'sp_number', true ) . '</span>';
|
||||
endif;
|
||||
endif;
|
||||
|
||||
echo '<td class="data-name">' . $name . '</td>';
|
||||
|
||||
Reference in New Issue
Block a user