| Server IP : 38.190.208.107 / Your IP : 216.73.217.13 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.5/wp-content/themes/woodmart/inc/shortcodes/ |
Upload File : |
<?php
/**
* Shortcode for Countdown Timer element.
*
* @package woodmart
*/
if ( ! defined( 'WOODMART_THEME_DIR' ) ) {
exit( 'No direct script access allowed' );
}
if ( ! function_exists( 'woodmart_shortcode_countdown_timer' ) ) {
/**
* Countdown timer shortcode
*
* @param array $atts Shortcode attributes.
*
* @return string
*/
function woodmart_shortcode_countdown_timer( $atts ) {
$click = '';
$output = '';
$class = '';
$timer_classes = '';
extract( // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
shortcode_atts(
array(
'date' => '2020/12/12',
'woodmart_color_scheme' => 'dark',
'size' => 'medium',
'align' => 'center',
'style' => 'simple',
'layout' => 'block',
'css_animation' => 'none',
'el_class' => '',
'hide_on_finish' => 'no',
'labels' => 'yes',
'separator' => '',
'separator_text' => ':',
'woodmart_css_id' => '',
'css' => '',
),
$atts
)
);
if ( $el_class ) {
$class .= ' ' . $el_class;
}
$class .= ' color-scheme-' . $woodmart_color_scheme;
$class .= ' text-' . $align;
$class .= woodmart_get_css_animation( $css_animation );
$class .= apply_filters( 'vc_shortcodes_css_class', '', '', $atts );
if ( function_exists( 'vc_shortcode_custom_css_class' ) ) {
$class .= ' ' . vc_shortcode_custom_css_class( $css );
}
$timer_classes .= ' wd-size-' . $size;
if ( 'active' === $style ) {
$timer_classes .= ' wd-bg-active';
}
$timer_classes .= 'no' === $labels ? ' wd-labels-hide' : '';
$timer_classes .= 'inline' === $layout ? ' wd-layout-inline' : '';
$timezone = 'GMT';
$date = str_replace( '/', '-', apply_filters( 'wd_countdown_timer_end_date', $date ) );
if ( apply_filters( 'woodmart_wp_timezone_element', false ) ) {
$timezone = get_option( 'timezone_string' );
}
ob_start();
woodmart_enqueue_js_library( 'countdown-bundle' );
woodmart_enqueue_js_script( 'countdown-element' );
woodmart_enqueue_inline_style( 'countdown' );
?>
<div class="wd-countdown-timer<?php echo esc_attr( $class ); ?>">
<div class="wd-timer<?php echo esc_attr( $timer_classes ); ?>" data-end-date="<?php echo esc_attr( $date ); ?>" data-timezone="<?php echo esc_attr( $timezone ); ?>" data-hide-on-finish="<?php echo esc_attr( $hide_on_finish ); ?>">
<span class="wd-item wd-timer-days">
<span class="wd-timer-value">
0
</span>
<span class="wd-timer-text">
<?php esc_html_e( 'days', 'woodmart' ); ?>
</span>
</span>
<?php if ( 'yes' === $separator && $separator_text ) : ?>
<div class="wd-sep"><?php echo esc_html( $separator_text ); ?></div>
<?php endif; ?>
<span class="wd-item wd-timer-hours">
<span class="wd-timer-value">
00
</span>
<span class="wd-timer-text">
<?php esc_html_e( 'hr', 'woodmart' ); ?>
</span>
</span>
<?php if ( 'yes' === $separator && $separator_text ) : ?>
<div class="wd-sep"><?php echo esc_html( $separator_text ); ?></div>
<?php endif; ?>
<span class="wd-item wd-timer-min">
<span class="wd-timer-value">
00
</span>
<span class="wd-timer-text">
<?php esc_html_e( 'min', 'woodmart' ); ?>
</span>
</span>
<?php if ( 'yes' === $separator && $separator_text ) : ?>
<div class="wd-sep"><?php echo esc_html( $separator_text ); ?></div>
<?php endif; ?>
<span class="wd-item wd-timer-sec">
<span class="wd-timer-value">
00
</span>
<span class="wd-timer-text">
<?php esc_html_e( 'sc', 'woodmart' ); ?>
</span>
</span>
</div>
</div>
<?php
$output = ob_get_contents();
ob_end_clean();
return $output;
}
}