File: /home/lucendi/www/wp-content/themes/divi/includes/builder/module/NumberCounter.php
<?php
class ET_Builder_Module_Number_Counter extends ET_Builder_Module {
function init() {
$this->name = esc_html__( 'Number Counter', 'et_builder' );
$this->slug = 'et_pb_number_counter';
$this->fb_support = true;
$this->whitelisted_fields = array(
'title',
'number',
'percent_sign',
'counter_color',
'background_layout',
'admin_label',
'module_id',
'module_class',
);
$this->fields_defaults = array(
'number' => array( '0' ),
'percent_sign' => array( 'on' ),
'number_text_color' => array( et_builder_accent_color(), 'add_default_setting' ),
'background_layout' => array( 'light' ),
'text_orientation' => array( 'center' ),
);
$this->custom_css_options = array(
'percent' => array(
'label' => esc_html__( 'Percent', 'et_builder' ),
'selector' => '.percent',
),
'number_counter_title' => array(
'label' => esc_html__( 'Number Counter Title', 'et_builder' ),
'selector' => 'h3',
),
);
$this->main_css_element = '%%order_class%%.et_pb_number_counter';
$this->options_toggles = array(
'general' => array(
'toggles' => array(
'main_content' => esc_html__( 'Text', 'et_builder' ),
'elements' => esc_html__( 'Elements', 'et_builder' ),
),
),
'advanced' => array(
'toggles' => array(
'text' => array(
'title' => esc_html__( 'Text', 'et_builder' ),
'priority' => 49,
),
),
),
);
$this->advanced_options = array(
'fonts' => array(
'title' => array(
'label' => esc_html__( 'Title', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} h3, {$this->main_css_element} h1.title, {$this->main_css_element} h2.title, {$this->main_css_element} h4.title, {$this->main_css_element} h5.title, {$this->main_css_element} h6.title",
'important' => 'plugin_only',
),
'header_level' => array(
'default' => 'h3',
),
),
'number' => array(
'label' => esc_html__( 'Number', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} .percent p",
),
'line_height' => array(
'range_settings' => array(
'min' => '1',
'max' => '100',
'step' => '1',
),
),
'text_color' => array(
'old_option_ref' => 'counter_color',
'default' => et_builder_accent_color(),
),
),
),
'background' => array(
'settings' => array(
'color' => 'alpha',
),
),
'custom_margin_padding' => array(
'css' => array(
'important' => array( 'custom_margin' ),
),
),
'max_width' => array(
'css' => array(
'module_alignment' => '%%order_class%%.et_pb_number_counter.et_pb_module',
),
),
'text' => array(),
'filters' => array(),
);
if ( et_is_builder_plugin_active() ) {
$this->advanced_options['fonts']['number']['css']['important'] = 'all';
}
}
function get_fields() {
$fields = array(
'title' => array(
'label' => esc_html__( 'Title', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'description' => esc_html__( 'Input a title for the counter.', 'et_builder' ),
'toggle_slug' => 'main_content',
),
'number' => array(
'label' => esc_html__( 'Number', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'value_type' => 'float',
'description' => esc_html__( "Define a number for the counter. (Don't include the percentage sign, use the option below.)", 'et_builder' ),
'toggle_slug' => 'main_content',
),
'percent_sign' => array(
'label' => esc_html__( 'Percent Sign', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'configuration',
'options' => array(
'on' => esc_html__( 'On', 'et_builder' ),
'off' => esc_html__( 'Off', 'et_builder' ),
),
'toggle_slug' => 'elements',
'description' => esc_html__( 'Here you can choose whether the percent sign should be added after the number set above.', 'et_builder' ),
),
'counter_color' => array(
'type' => 'hidden',
'shortcode_default' => '',
'tab_slug' => 'advanced',
),
'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 title 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' ),
),
'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 ) {
wp_enqueue_script( 'easypiechart' );
$number = $this->shortcode_atts['number'];
$percent_sign = $this->shortcode_atts['percent_sign'];
$title = $this->shortcode_atts['title'];
$module_id = $this->shortcode_atts['module_id'];
$module_class = $this->shortcode_atts['module_class'];
$counter_color = $this->shortcode_atts['counter_color'];
$background_layout = $this->shortcode_atts['background_layout'];
$header_level = $this->shortcode_atts['title_level'];
$module_class = ET_Builder_Element::add_module_order_class( $module_class, $function_name );
if ( et_is_builder_plugin_active() ) {
wp_enqueue_script( 'fittext' );
}
$separator = strpos( $number, ',' ) ? ',' : '';
$number = str_ireplace( array( '%', ',' ), '', $number );
$video_background = $this->video_background();
$parallax_image_background = $this->get_parallax_image_background();
$class = " et_pb_module et_pb_bg_layout_{$background_layout}";
$output = sprintf(
'<div%1$s class="et_pb_number_counter%2$s%3$s%9$s%11$s%13$s%14$s" data-number-value="%4$s" data-number-separator="%8$s">
%12$s
%10$s
<div class="percent" %5$s><p><span class="percent-value"></span>%6$s</p></div>
%7$s
</div><!-- .et_pb_number_counter -->',
( '' !== $module_id ? sprintf( ' id="%1$s"', esc_attr( $module_id ) ) : '' ),
esc_attr( $class ),
( '' !== $module_class ? sprintf( ' %1$s', esc_attr( $module_class ) ) : '' ),
esc_attr( $number ),
( '' !== $counter_color ? sprintf( ' style="color:%s"', esc_attr( $counter_color ) ) : '' ),
( 'on' == $percent_sign ? '%' : ''),
( '' !== $title ? sprintf( '<%1$s class="title">%2$s</%1$s>', et_pb_process_header_level( $header_level, 'h3' ), esc_html( $title ) ) : '' ),
esc_attr( $separator ),
'' !== $video_background ? ' et_pb_section_video et_pb_preload' : '',
$video_background,
'' !== $parallax_image_background ? ' et_pb_section_parallax' : '',
$parallax_image_background,
$this->get_text_orientation_classname(),
'' !== $title ? ' et_pb_with_title' : ''
);
return $output;
}
}
new ET_Builder_Module_Number_Counter;