Current File : /home/digitaw/www/wp-content/plugins/the-events-calendar/src/views/v2/day/event/category.php
<?php
/**
 * View: Day Single Event Categories
 *
 * This template is responsible for displaying the highest-priority category for an event
 * within the day view. The category is determined based on its assigned priority.
 *
 * Override this template in your own theme by creating a file at:
 * [your-theme]/tribe/events/v2/day/event/category.php
 *
 * See more documentation about our views templating system.
 *
 * @link http://evnt.is/1aiy
 *
 * @version 6.14.0
 *
 * @var object|null $category_colors_priority_category The highest-priority category for the event, determined using the
 *                                                     `Category_Color_Priority_Category_Provider` class.
 * @var array|null  $category_colors_meta              Array containing the category metadata (primary, secondary, text,
 *                                                     priority, hide_from_legend).
 *
 * @see tribe_get_event() For the format of the event object.
 */

if ( empty( $category_colors_priority_category ) ) {
	return;
}

$category = $category_colors_priority_category;

?>

<div class="tec-events-calendar-day__event-categories">
	<div class="tec-events-calendar-day__category tribe-events-calendar__category--<?php echo sanitize_html_class( $category->slug ); ?>">
		<?php if ( ! empty( $category_colors_meta['primary'] ) ) : ?>
			<span class="tec-events-calendar-day__category-icon"></span>
		<?php endif; ?>
		<?php echo esc_html( $category->name ); ?>
	</div>
</div>