: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
class ET_Builder_Module_Circle_Counter extends ET_Builder_Module {
$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(
'main_content' => et_builder_i18n( 'Text' ),
'elements' => et_builder_i18n( 'Elements' ),
'circle' => et_builder_i18n( 'Circle' ),
'title' => et_builder_i18n( 'Text' ),
$this->advanced_fields = array(
'label' => et_builder_i18n( 'Title' ),
'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, {$this->main_css_element} h3 a, {$this->main_css_element} h1.et_pb_module_header a, {$this->main_css_element} h2.et_pb_module_header a, {$this->main_css_element} h4.et_pb_module_header a, {$this->main_css_element} h5.et_pb_module_header a, {$this->main_css_element} h6.et_pb_module_header a",
'important' => 'plugin_only',
'label' => esc_html__( 'Number', 'et_builder' ),
'hide_line_height' => true,
'main' => "{$this->main_css_element} .percent p",
'margin_padding' => array(
'important' => array( 'custom_margin' ),
'custom_margin' => array(
'default' => '0px|auto|30px|auto|false|false',
'range_settings' => array(
'module_alignment' => array(
'depends_show_if_not' => array(
'use_background_layout' => true,
'main' => '%%order_class%% .percent p, %%order_class%% .et_pb_module_header'
'text_orientation' => array(
'default_on_front' => 'center',
'background_layout' => array(
'default_on_front' => 'light',
'main' => '%%order_class%%',
'position_fields' => array(
$this->custom_css_fields = array(
'label' => esc_html__( 'Percent Container', 'et_builder' ),
'selector' => '.percent',
'circle_counter_title' => array(
'label' => esc_html__( 'Circle Counter Title', 'et_builder' ),
'label' => esc_html__( 'Percent Text', 'et_builder' ),
'selector' => '.percent p',
$this->help_videos = array(
'name' => esc_html__( 'An introduction to the Circle Counter module', 'et_builder' ),
'label' => et_builder_i18n( 'Title' ),
'option_category' => 'basic_option',
'description' => esc_html__( 'Input a title for the circle counter.', 'et_builder' ),
'toggle_slug' => 'main_content',
'dynamic_content' => 'text',
'mobile_options' => true,
'label' => esc_html__( 'Number', 'et_builder' ),
'option_category' => 'basic_option',
'number_validation' => true,
'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',
'mobile_options' => true,
'label' => esc_html__( 'Percent Sign', 'et_builder' ),
'type' => 'yes_no_button',
'option_category' => 'configuration',
'on' => et_builder_i18n( 'On' ),
'off' => et_builder_i18n( 'Off' ),
'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',
'mobile_options' => true,
'default' => et_builder_accent_color(),
'label' => esc_html__( 'Circle Color', 'et_builder' ),
'tab_slug' => 'advanced',
'toggle_slug' => 'circle',
'description' => esc_html__( 'This will change the fill color for the bar.', 'et_builder' ),
'mobile_options' => true,
'label' => esc_html__( 'Circle Background Color', 'et_builder' ),
'description' => esc_html__( 'Pick a color to be used in the unfilled space of the circle.', 'et_builder' ),
'tab_slug' => 'advanced',
'toggle_slug' => 'circle',
'mobile_options' => true,
'circle_color_alpha' => array(
'label' => esc_html__( 'Circle Background Opacity', 'et_builder' ),
'description' => esc_html__( 'Decrease the opacity of the unfilled space of the circle to make the color fade into the background.', 'et_builder' ),
'option_category' => 'configuration',
'range_settings' => array(
'tab_slug' => 'advanced',
'toggle_slug' => 'circle',
'mobile_options' => true,
function render( $attrs, $content = null, $render_slug ) {
wp_enqueue_script( 'easypiechart' );
$multi_view = et_pb_multi_view_options( $this );
$number = $multi_view->get_value( 'number' );
$percent_sign = $this->props['percent_sign'];
$title = $multi_view->render_element( array(
'tag' => et_pb_process_header_level( $this->props['title_level'], 'h3' ),
'content' => '{{title}}',
'class' => 'et_pb_module_header',
$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'];
$bar_bg_color = $this->props['bar_bg_color'];
$bar_bg_color_values = et_pb_responsive_options()->get_property_values( $this->props, 'bar_bg_color' );
$bar_bg_color_tablet = isset( $bar_bg_color_values['tablet'] ) ? $bar_bg_color_values['tablet'] : '';
$bar_bg_color_phone = isset( $bar_bg_color_values['phone'] ) ? $bar_bg_color_values['phone'] : '';
$bar_bg_color_hover = et_pb_hover_options()->get_value( 'bar_bg_color', $this->props, '' );
$bar_bg_color_hover_enabled = et_builder_is_hover_enabled( 'bar_bg_color', $this->props );
$circle_color = $this->props['circle_color'];
$circle_color_values = et_pb_responsive_options()->get_property_values( $this->props, 'circle_color' );
$circle_color_tablet = isset( $circle_color_values['tablet'] ) ? $circle_color_values['tablet'] : '';
$circle_color_phone = isset( $circle_color_values['phone'] ) ? $circle_color_values['phone'] : '';
$circle_color_hover = et_pb_hover_options()->get_value( 'circle_color', $this->props, '' );
$circle_color_hover_enabled = et_builder_is_hover_enabled( 'circle_color', $this->props );
$circle_color_alpha = $this->props['circle_color_alpha'];
$circle_color_alpha_values = et_pb_responsive_options()->get_property_values( $this->props, 'circle_color_alpha' );
$circle_color_alpha_tablet = isset( $circle_color_alpha_values['tablet'] ) ? $circle_color_alpha_values['tablet'] : '';
$circle_color_alpha_phone = isset( $circle_color_alpha_values['phone'] ) ? $circle_color_alpha_values['phone'] : '';
$circle_color_alpha_hover = et_pb_hover_options()->get_value( 'circle_color_alpha', $this->props, '' );
$circle_color_alpha_hover_enable = et_builder_is_hover_enabled( 'circle_color_alpha', $this->props );
$number = str_ireplace( '%', '', $number );
$video_background = $this->video_background();
$parallax_image_background = $this->get_parallax_image_background();
$bar_bg_color_data_tablet = '' !== $bar_bg_color_tablet ?
sprintf( ' data-bar-bg-color-tablet="%1$s"', esc_attr( $bar_bg_color_tablet ) )
$bar_bg_color_data_phone = '' !== $bar_bg_color_phone ?
sprintf( ' data-bar-bg-color-phone="%1$s"', esc_attr( $bar_bg_color_phone ) )
$bar_bg_color_data_hover = '' !== $bar_bg_color_hover && $bar_bg_color_hover_enabled ?
sprintf( ' data-bar-bg-color-hover="%1$s"', esc_attr( $bar_bg_color_hover ) )
$circle_color_data = '' !== $circle_color ?
sprintf( ' data-color="%1$s"', esc_attr( $circle_color ) )
$circle_color_data_tablet = '' !== $circle_color_tablet ?
sprintf( ' data-color-tablet="%1$s"', esc_attr( $circle_color_tablet ) )
$circle_color_data_phone = '' !== $circle_color_phone ?
sprintf( ' data-color-phone="%1$s"', esc_attr( $circle_color_phone ) )
$circle_color_data_hover = '' !== $circle_color_hover && $circle_color_hover_enabled ?
sprintf( ' data-color-hover="%1$s"', esc_attr( $circle_color_hover ) )
$circle_color_alpha_data = '' !== $circle_color_alpha ?
sprintf( ' data-alpha="%1$s"', esc_attr( $circle_color_alpha ) )
$circle_color_alpha_data_tablet = '' !== $circle_color_alpha_tablet ?
sprintf( ' data-alpha-tablet="%1$s"', esc_attr( $circle_color_alpha_tablet ) )
$circle_color_alpha_data_phone = '' !== $circle_color_alpha_phone ?
sprintf( ' data-alpha-phone="%1$s"', esc_attr( $circle_color_alpha_phone ) )
$circle_color_alpha_data_hover = '' !== $circle_color_alpha_hover && $circle_color_alpha_hover_enable ?
sprintf( ' data-alpha-hover="%1$s"', esc_attr( $circle_color_alpha_hover ) )
// Background layout data attributes.
$data_background_layout = et_pb_background_layout_options()->get_background_layout_attrs( $this->props );
$multi_view_data_attr = $multi_view->render_attrs( array(
'data-number-value' => '{{number}}',
'data-percent-sign' => '{{percent_sign}}',
'et_pb_with_title' => array(
'title' => '__not_empty',
$this->add_classname( array(
'container-width-change-notify',
$this->get_text_orientation_classname(),
// Background layout class names.
$background_layout_class_names = et_pb_background_layout_options()->get_background_layout_class( $this->props );
$this->add_classname( $background_layout_class_names );
$this->add_classname( 'et_pb_with_title' );
'<div%1$s class="%2$s"%11$s>
<div class="et_pb_circle_counter_inner" data-number-value="%3$s" data-bar-bg-color="%4$s"%7$s%8$s%12$s%13$s%14$s%15$s%16$s%17$s%18$s%19$s%20$s%21$s>
<div class="percent"%19$s><p><span class="percent-value"></span><span class="percent-sign">%5$s</span></p></div>
</div><!-- .et_pb_circle_counter -->',
$this->module_classname( $render_slug ),
esc_attr( $bar_bg_color ),
( 'on' == $multi_view->get_value( 'percent_sign' ) ? '%' : ''), // #5
et_core_esc_previously( $title ),
$circle_color_alpha_data,
$parallax_image_background, // #10
et_core_esc_previously( $data_background_layout ),
$bar_bg_color_data_tablet,
$bar_bg_color_data_phone,
$circle_color_data_tablet,
$circle_color_data_phone, // #15
$circle_color_alpha_data_tablet,
$circle_color_alpha_data_phone,
$bar_bg_color_data_hover,
$circle_color_data_hover,
$circle_color_alpha_data_hover, // #20
* Filter multi view value.
* @see ET_Builder_Module_Helper_MultiViewOptions::filter_value
* @param mixed $raw_value Props raw value.
* @type string $context Context param: content, attrs, visibility, classes.
* @type string $name Module options props name.
* @type string $mode Current data mode: desktop, hover, tablet, phone.
* @type string $attr_key Attribute key for attrs context data. Example: src, class, etc.
* @type string $attr_sub_key Attribute sub key that availabe when passing attrs value as array such as styes. Example: padding-top, margin-botton, etc.
* @param ET_Builder_Module_Helper_MultiViewOptions $multi_view Multiview object instance.
public function multi_view_filter_value( $raw_value, $args, $multi_view ) {
$name = isset( $args['name'] ) ? $args['name'] : '';
$mode = isset( $args['mode'] ) ? $args['mode'] : '';
if ( 'number' === $name ) {
$raw_value = str_replace( array( '%' ), '', $raw_value );
} else if ( 'percent_sign' === $name ) {
$raw_value = 'on' === $raw_value ? '%' : ' ';
$fields_need_escape = array(
if ( $raw_value && in_array( $name, $fields_need_escape, true ) ) {
return $this->_esc_attr( $multi_view->get_name_by_mode( $name, $mode ), 'none', $raw_value );
new ET_Builder_Module_Circle_Counter;