File "time-separator.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/views/v2/day/time-separator.php
File size: 1.11 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* View: Day View Time separator
*
* Override this template in your own theme by creating a file at:
* [your-theme]/tribe/events/v2/day/time-separator.php
*
* See more documentation about our views templating system.
*
* @link http://evnt.is/1aiy
*
* @version 4.9.11
*
*/
use Tribe\Events\Views\V2\Utils;
use Tribe__Date_Utils as Dates;
$should_have_time_separator = Utils\Separators::should_have_time( $this->get( 'events' ), $event );
if ( ! $should_have_time_separator || ! empty( $event->timeslot ) ) {
return;
}
$event_start_hour = strtotime( Dates::round_nearest_half_hour( $event->dates->start_display->format( Dates::DBDATETIMEFORMAT ) ) );
// Format to WP format
$separator_text = date_i18n( tribe_get_time_format(), $event_start_hour );
$time_attribute = date_i18n( 'H:i', $event_start_hour );
?>
<div class="tribe-events-calendar-day__time-separator">
<time
class="tribe-events-calendar-day__time-separator-text tribe-common-h7 tribe-common-h6--min-medium tribe-common-h--alt"
datetime="<?php echo esc_attr( $time_attribute ); ?>"
>
<?php echo esc_html( $separator_text ); ?>
</time>
</div>