File: /var/www/html/wp-content/themes/Divi/includes/builder/module/CircleCounter.php
<?php
class ET_Builder_Module_Circle_Counter extends ET_Builder_Module {
function init() {
$this->name = esc_html__( 'Circle Counter', 'et_builder' );
$this->plural = esc_html__( 'Circle Counters', 'et_builder' );
$this->slug = 'et_pb_circle_counter';
$this->vb_support = 'on';
$this->main_css_element = '%%order_class%%.et_pb_circle_counter';
$this->settings_modal_toggles = array(
'general' => array(
'toggles' => array(
'main_content' => esc_html__( 'Text', 'et_builder' ),
'elements' => esc_html__( 'Elements', 'et_builder' ),
),
),
'advanced' => array(
'toggles' => array(
'circle' => esc_html__( 'Circle', 'et_builder' ),
'text' => array(
'title' => esc_html__( 'Text', 'et_builder' ),
'priority' => 49,
),
),
),
);
$this->advanced_fields = array(
'fonts' => array(
'title' => array(
'label' => esc_html__( 'Title', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} h3, {$this->main_css_element} h1.et_pb_module_header, {$this->main_css_element} h2.et_pb_module_header, {$this->main_css_element} h4.et_pb_module_header, {$this->main_css_element} h5.et_pb_module_header, {$this->main_css_element} h6.et_pb_module_header",
'important' => 'plugin_only',
),
'header_level' => array(
'default' => 'h3',
),
),
'number' => array(
'label' => esc_html__( 'Number', 'et_builder' ),
'hide_line_height' => true,
'css' => array(
'main' => "{$this->main_css_element} .percent p",
),
),
),
'margin_padding' => array(
'css' => array(
'important' => array( 'custom_margin' ),
),
),
'max_width' => array(
'options' => array(
'max_width' => array(
'default' => '225px',
'range_settings' => array(
'min' => '0',
'max' => '450',
'step' => '1',
),
),
'module_alignment' => array(
'depends_show_if_not' => array(
'',
'225px',
),
),
),
),
'text' => array(
'use_background_layout' => true,
'css' => array(
'main' => '%%order_class%% .percent p, %%order_class%% .et_pb_module_header'
),
'options' => array(
'text_orientation' => array(
'default_on_front' => 'center',
),
'background_layout' => array(
'default_on_front' => 'light',
),
),
),
'filters' => array(
'css' => array(
'main' => '%%order_class%%',
),
),
'button' => false,
);
$this->custom_css_fields = array(
'percent' => array(
'label' => esc_html__( 'Percent Container', 'et_builder' ),
'selector' => '.percent',
),
'circle_counter_title' => array(
'label' => esc_html__( 'Circle Counter Title', 'et_builder' ),
'selector' => 'h3',
),
'percent_text' => array(
'label' => esc_html__( 'Percent Text', 'et_builder' ),
'selector' => '.percent p',
),
);
$this->help_videos = array(
array(
'id' => esc_html( 'GTslkWWbda0' ),
'name' => esc_html__( 'An introduction to the Circle Counter module', 'et_builder' ),
),
);
}
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 circle counter.', 'et_builder' ),
'toggle_slug' => 'main_content',
'dynamic_content' => 'text',
),
'number' => array(
'label' => esc_html__( 'Number', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'number_validation' => true,
'value_type' => 'int',
'value_min' => 0,
'value_max' => 100,
'description' => et_get_safe_localization( __( "Define a number for the circle counter. (Don't include the percentage sign, use the option below.). <strong>Note: You can use only natural numbers from 0 to 100</strong>", 'et_builder' ) ),
'toggle_slug' => 'main_content',
'default_on_front' => '0',
),
'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' ),
'default_on_front' => 'on',
),
'bar_bg_color' => array(
'default' => et_builder_accent_color(),
'label' => esc_html__( 'Bar Background Color', 'et_builder' ),
'type' => 'color-alpha',
'tab_slug' => 'advanced',
'toggle_slug' => 'circle',
'description' => esc_html__( 'This will change the fill color for the bar.', 'et_builder' ),
),
'circle_color' => array(
'label' => esc_html__( 'Circle Color', 'et_builder' ),
'type' => 'color-alpha',
'custom_color' => true,
'tab_slug' => 'advanced',
'toggle_slug' => 'circle',
),
'circle_color_alpha' => array(
'label' => esc_html__( 'Circle Color Opacity', 'et_builder' ),
'type' => 'range',
'option_category' => 'configuration',
'range_settings' => array(
'min' => '0.1',
'max' => '1.0',
'step' => '0.05',
),
'tab_slug' => 'advanced',
'toggle_slug' => 'circle',
'unitless' => true,
),
);
return $fields;
}
function render( $attrs, $content = null, $render_slug ) {
wp_enqueue_script( 'easypiechart' );
$number = $this->props['number'];
$percent_sign = $this->props['percent_sign'];
$title = $this->_esc_attr( 'title' );
$background_layout = $this->props['background_layout'];
$background_layout_hover = et_pb_hover_options()->get_value( 'background_layout', $this->props, 'light' );
$background_layout_hover_enabled = et_pb_hover_options()->is_enabled( 'background_layout', $this->props );
$bar_bg_color = $this->props['bar_bg_color'];
$circle_color = $this->props['circle_color'];
$circle_color_alpha = $this->props['circle_color_alpha'];
$custom_padding = $this->props['custom_padding'];
$custom_padding_tablet = $this->props['custom_padding_tablet'];
$custom_padding_phone = $this->props['custom_padding_phone'];
$header_level = $this->props['title_level'];
$number = str_ireplace( '%', '', $number );
$video_background = $this->video_background();
$parallax_image_background = $this->get_parallax_image_background();
$circle_color_data = '' !== $circle_color ?
sprintf( ' data-color="%1$s"', esc_attr( $circle_color ) )
: '';
$circle_color_alpha_data = '' !== $circle_color_alpha ?
sprintf( ' data-alpha="%1$s"', esc_attr( $circle_color_alpha ) )
: '';
$data_background_layout = '';
$data_background_layout_hover = '';
if ( $background_layout_hover_enabled ) {
$data_background_layout = sprintf(
' data-background-layout="%1$s"',
esc_attr( $background_layout )
);
$data_background_layout_hover = sprintf(
' data-background-layout-hover="%1$s"',
esc_attr( $background_layout_hover )
);
}
// Module classnames
$this->add_classname( array(
"et_pb_bg_layout_{$background_layout}",
'container-width-change-notify',
$this->get_text_orientation_classname(),
) );
if ( '' !== $title ) {
$this->add_classname( 'et_pb_with_title' );
}
$output = sprintf(
'<div%1$s class="%2$s"%11$s%12$s>
<div class="et_pb_circle_counter_inner" data-number-value="%3$s" data-bar-bg-color="%4$s"%7$s%8$s>
%10$s
%9$s
<div class="percent"><p><span class="percent-value"></span>%5$s</p></div>
%6$s
</div>
</div><!-- .et_pb_circle_counter -->',
$this->module_id(),
$this->module_classname( $render_slug ),
esc_attr( $number ),
esc_attr( $bar_bg_color ),
( 'on' == $percent_sign ? '%' : ''), // #5
( '' !== $title ? sprintf( '<%1$s class="et_pb_module_header">%2$s</%1$s>', et_pb_process_header_level( $header_level, 'h3' ), et_esc_previously( $title ) ) : '' ),
$circle_color_data,
$circle_color_alpha_data,
$video_background,
$parallax_image_background, // #10
et_esc_previously( $data_background_layout ),
et_esc_previously( $data_background_layout_hover )
);
return $output;
}
}
new ET_Builder_Module_Circle_Counter;