File: /home/lucendi/www/wp-content/themes/divi/includes/builder/module/CountdownTimer.php
<?php
class ET_Builder_Module_Countdown_Timer extends ET_Builder_Module {
function init() {
$this->name = esc_html__( 'Countdown Timer', 'et_builder' );
$this->slug = 'et_pb_countdown_timer';
$this->fb_support = true;
$this->whitelisted_fields = array(
'title',
'date_time',
'background_layout',
'use_background_color',
'background_color',
'admin_label',
'module_id',
'module_class',
);
$this->fields_defaults = array(
'background_layout' => array( 'dark' ),
'use_background_color' => array( 'on' ),
'background_color' => array( et_builder_accent_color(), 'only_default_setting' ),
'text_orientation' => array( 'center' ),
);
$this->main_css_element = '%%order_class%%.et_pb_countdown_timer';
$this->options_toggles = array(
'general' => array(
'toggles' => array(
'main_content' => esc_html__( 'Text', 'et_builder' ),
),
),
'advanced' => array(
'toggles' => array(
'text' => esc_html__( 'Text', 'et_builder' ),
),
),
);
$this->advanced_options = array(
'fonts' => array(
'header' => array(
'label' => esc_html__( 'Title', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} h4, {$this->main_css_element} h1.title, {$this->main_css_element} h2.title, {$this->main_css_element} h3.title, {$this->main_css_element} h5.title, {$this->main_css_element} h6.title",
'important' => array( 'size', 'plugin_all' ),
),
'header_level' => array(
'default' => 'h4',
),
),
'numbers' => array(
'label' => esc_html__( 'Numbers', 'et_builder' ),
'css' => array(
'main' => ".et_pb_column {$this->main_css_element} .section p.value",
'text_shadow' => ".et_pb_column {$this->main_css_element} .section p.value, .et_pb_column {$this->main_css_element} .section.sep p",
'important' => 'all',
),
'line_height' => array(
'range_settings' => array(
'min' => '1',
'max' => '100',
'step' => '1',
),
),
),
'label' => array(
'label' => esc_html__( 'Label', 'et_builder' ),
'css' => array(
'main' => ".et_pb_column {$this->main_css_element} .section p.label",
'important' => array(
'size',
'line-height',
),
),
'line_height' => array(
'range_settings' => array(
'min' => '1',
'max' => '100',
'step' => '1',
),
),
),
),
'background' => array(
'use_background_color' => false,
),
'custom_margin_padding' => array(
'css' => array(
'important' => 'all',
),
),
'max_width' => array(),
'text' => array(
'css' => array(
'text_orientation' => '%%order_class%% .et_pb_countdown_timer_container, %%order_class%% .title',
),
),
'filters' => array(),
);
$this->custom_css_options = array(
'container' => array(
'label' => esc_html__( 'Container', 'et_builder' ),
'selector' => '.et_pb_countdown_timer_container',
),
'title' => array(
'label' => esc_html__( 'Title', 'et_builder' ),
'selector' => '.title',
),
'timer_section' => array(
'label' => esc_html__( 'Timer Section', 'et_builder' ),
'selector' => '.section',
),
);
}
function get_fields() {
$fields = array(
'title' => array(
'label' => esc_html__( 'Countdown Timer Title', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'description' => esc_html__( 'This is the title displayed for the countdown timer.', 'et_builder' ),
'toggle_slug' => 'main_content',
),
'date_time' => array(
'label' => esc_html__( 'Countdown To', 'et_builder' ),
'type' => 'date_picker',
'option_category' => 'basic_option',
'description' => et_get_safe_localization( sprintf( __( 'This is the date the countdown timer is counting down to. Your countdown timer is based on your timezone settings in your <a href="%1$s" target="_blank" title="WordPress General Settings">WordPress General Settings</a>', 'et_builder' ), esc_url( admin_url( 'options-general.php' ) ) ) ),
'toggle_slug' => 'main_content',
),
'background_layout' => array(
'label' => esc_html__( 'Text Color', 'et_builder' ),
'type' => 'select',
'option_category' => 'color_option',
'options' => array(
'light' => esc_html__( 'Dark', 'et_builder' ),
'dark' => esc_html__( 'Light', 'et_builder' ),
),
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'description' => esc_html__( 'Here you can choose whether your text should be light or dark. If you are working with a dark background, then your text should be light. If your background is light, then your text should be set to dark.', 'et_builder' ),
),
'background_color' => array(
'label' => esc_html__( 'Background Color', 'et_builder' ),
'type' => 'color-alpha',
'depends_default' => true,
'toggle_slug' => 'background',
'description' => esc_html__( 'Here you can define a custom background color for your countdown timer.', 'et_builder' ),
),
'use_background_color' => array(
'label' => esc_html__( 'Use Background Color', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'color_option',
'options' => array(
'on' => esc_html__( 'Yes', 'et_builder' ),
'off' => esc_html__( 'No', 'et_builder' ),
),
'affects' => array(
'background_color',
),
'toggle_slug' => 'background',
'description' => esc_html__( 'Here you can choose whether background color setting below should be used or not.', 'et_builder' ),
),
'disabled_on' => array(
'label' => esc_html__( 'Disable on', 'et_builder' ),
'type' => 'multiple_checkboxes',
'options' => array(
'phone' => esc_html__( 'Phone', 'et_builder' ),
'tablet' => esc_html__( 'Tablet', 'et_builder' ),
'desktop' => esc_html__( 'Desktop', 'et_builder' ),
),
'additional_att' => 'disable_on',
'option_category' => 'configuration',
'description' => esc_html__( 'This will disable the module on selected devices', 'et_builder' ),
'tab_slug' => 'custom_css',
'toggle_slug' => 'visibility',
),
'admin_label' => array(
'label' => esc_html__( 'Admin Label', 'et_builder' ),
'type' => 'text',
'description' => esc_html__( 'This will change the label of the module in the builder for easy identification.', 'et_builder' ),
'toggle_slug' => 'admin_label',
),
'module_id' => array(
'label' => esc_html__( 'CSS ID', 'et_builder' ),
'type' => 'text',
'option_category' => 'configuration',
'tab_slug' => 'custom_css',
'toggle_slug' => 'classes',
'option_class' => 'et_pb_custom_css_regular',
),
'module_class' => array(
'label' => esc_html__( 'CSS Class', 'et_builder' ),
'type' => 'text',
'option_category' => 'configuration',
'tab_slug' => 'custom_css',
'toggle_slug' => 'classes',
'option_class' => 'et_pb_custom_css_regular',
),
);
return $fields;
}
function shortcode_callback( $atts, $content = null, $function_name ) {
$module_id = $this->shortcode_atts['module_id'];
$module_class = $this->shortcode_atts['module_class'];
$title = $this->shortcode_atts['title'];
$date_time = $this->shortcode_atts['date_time'];
$background_layout = $this->shortcode_atts['background_layout'];
$background_color = $this->shortcode_atts['background_color'];
$use_background_color = $this->shortcode_atts['use_background_color'];
$header_level = $this->shortcode_atts['header_level'];
$module_class = ET_Builder_Element::add_module_order_class( $module_class, $function_name );
$module_id = '' !== $module_id ? sprintf( ' id="%s"', esc_attr( $module_id ) ) : '';
$module_class = '' !== $module_class ? sprintf( ' %s', esc_attr( $module_class ) ) : '';
$background_layout = sprintf( ' et_pb_bg_layout_%s', esc_attr( $background_layout ) );
$end_date = gmdate( 'M d, Y H:i:s', strtotime( $date_time ) );
$gmt_offset = get_option( 'gmt_offset' );
$gmt_divider = '-' === substr( $gmt_offset, 0, 1 ) ? '-' : '+';
$gmt_offset_hour = str_pad( abs( intval( $gmt_offset ) ), 2, "0", STR_PAD_LEFT );
$gmt_offset_minute = str_pad( ( ( abs( $gmt_offset ) * 100 ) % 100 ) * ( 60 / 100 ), 2, "0", STR_PAD_LEFT );
$gmt = "GMT{$gmt_divider}{$gmt_offset_hour}{$gmt_offset_minute}";
if ( '' !== $title ) {
$title = sprintf( '<%2$s class="title">%s</%2$s>', esc_html( $title ), et_pb_process_header_level( $header_level, 'h4' ) );
}
$video_background = $this->video_background();
$parallax_image_background = $this->get_parallax_image_background();
$background_color_style = '';
if ( ! empty( $background_color ) && 'on' == $use_background_color ) {
$background_color_style = sprintf( ' style="background-color: %1$s;"', esc_attr( $background_color ) );
}
$output = sprintf(
'<div%1$s class="et_pb_module et_pb_countdown_timer%2$s%3$s%15$s%17$s%19$s"%4$s data-end-timestamp="%5$s">
%18$s
%16$s
<div class="et_pb_countdown_timer_container clearfix">
%6$s
<div class="days section values" data-short="%14$s" data-full="%7$s">
<p class="value"></p>
<p class="label">%7$s</p>
</div>
<div class="sep section"><p>:</p></div>
<div class="hours section values" data-short="%9$s" data-full="%8$s">
<p class="value"></p>
<p class="label">%8$s</p>
</div>
<div class="sep section"><p>:</p></div>
<div class="minutes section values" data-short="%11$s" data-full="%10$s">
<p class="value"></p>
<p class="label">%10$s</p>
</div>
<div class="sep section"><p>:</p></div>
<div class="seconds section values" data-short="%13$s" data-full="%12$s">
<p class="value"></p>
<p class="label">%12$s</p>
</div>
</div>
</div>',
$module_id,
$background_layout,
$module_class,
$background_color_style,
esc_attr( strtotime( "{$end_date} {$gmt}" ) ),
$title,
esc_html__( 'Day(s)', 'et_builder' ),
esc_html__( 'Hour(s)', 'et_builder' ),
esc_attr__( 'Hrs', 'et_builder' ),
esc_html__( 'Minute(s)', 'et_builder' ),
esc_attr__( 'Min', 'et_builder' ),
esc_html__( 'Second(s)', 'et_builder' ),
esc_attr__( 'Sec', 'et_builder' ),
esc_attr__( 'Day', 'et_builder' ),
'' !== $video_background ? ' et_pb_section_video et_pb_preload' : '',
$video_background,
'' !== $parallax_image_background ? ' et_pb_section_parallax' : '',
$parallax_image_background,
( 'on' !== $use_background_color ? ' et_pb_no_bg' : '' )
);
return $output;
}
}
new ET_Builder_Module_Countdown_Timer;