HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/triad-infosec/wp-content/themes/Avada/tribe-events/pro/widgets/countdown-widget.php
<?php
/**
 * Events Pro Countdown Widget
 * This is the template for the output of the event countdown widget.
 * All the items are turned on and off through the widget admin.
 * There is currently no default styling, which is highly needed.
 *
 * Override this template in your own theme by creating a file at [your-theme]/tribe-events/pro/widgets/countdown-widget.php
 *
 * @package TribeEventsCalendarPro
 *
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
} ?>

<div class="tribe-countdown-timer tribe-clearfix">
	<div class="tribe-countdown-days tribe-countdown-number">
		<span class="fusion-tribe-counterdown-over">DD</span>
		<span class="tribe-countdown-under"><?php esc_html_e( 'days', 'tribe-events-calendar-pro' ); ?></span>
	</div>
	<div class="tribe-countdown-hours tribe-countdown-number">
		<span class="fusion-tribe-counterdown-over">HH</span>
		<span class="tribe-countdown-under"><?php esc_html_e( 'hours', 'tribe-events-calendar-pro' ); ?></span>
	</div>
	<div class="tribe-countdown-minutes tribe-countdown-number">
		<span class="fusion-tribe-counterdown-over">MM</span>
		<span class="tribe-countdown-under"><?php esc_html_e( 'min', 'tribe-events-calendar-pro' ); ?></span>
	</div>
	<?php if ( $show_seconds ) : ?>
		<div class="tribe-countdown-seconds tribe-countdown-number tribe-countdown-right">
			<span class="fusion-tribe-counterdown-over">SS</span>
			<span class="tribe-countdown-under"><?php esc_html_e( 'sec', 'tribe-events-calendar-pro' ); ?></span>
		</div>
	<?php endif; ?>
</div>