<?php
use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Utils;
use Elementor\Group_Control_Image_Size;
use Elementor\Icons_Manager;
if (!defined('ABSPATH')) {
exit;
} // Exit if accessed directly
class Motiox_Elementor_Counter extends Elementor\Widget_Base {
/**
* Get widget name.
*
* Retrieve counter widget name.
*
* @since 1.0.0
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'counter';
}
/**
* Get widget title.
*
* Retrieve counter widget title.
*
* @since 1.0.0
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __('Motiox Counter', 'motiox');
}
/**
* Get widget icon.
*
* Retrieve counter widget icon.
*
* @since 1.0.0
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-counter';
}
/**
* Retrieve the list of scripts the counter widget depended on.
*
* Used to set scripts dependencies required to run the widget.
*
* @since 1.3.0
* @access public
*
* @return array Widget scripts dependencies.
*/
public function get_script_depends() {
return ['jquery-numerator'];
}
public function get_categories() {
return array('motiox-addons');
}
/**
* Register counter widget controls.
*
* Adds different input fields to allow the user to change and customize the widget settings.
*
* @since 1.0.0
* @access protected
*/
protected function register_controls() {
$this->start_controls_section(
'section_counter',
[
'label' => esc_html__('Counter', 'motiox'),
]
);
$this->add_control(
'starting_number',
[
'label' => esc_html__('Starting Number', 'motiox'),
'type' => Controls_Manager::NUMBER,
'default' => 0,
]
);
$this->add_control(
'ending_number',
[
'label' => esc_html__('Ending Number', 'motiox'),
'type' => Controls_Manager::NUMBER,
'default' => 100,
]
);
$this->add_control(
'prefix',
[
'label' => esc_html__('Number Prefix', 'motiox'),
'type' => Controls_Manager::TEXT,
'default' => '',
'placeholder' => 1,
]
);
$this->add_control(
'suffix',
[
'label' => esc_html__('Number Suffix', 'motiox'),
'type' => Controls_Manager::TEXT,
'default' => '',
'placeholder' => esc_html__('Plus', 'motiox'),
]
);
$this->add_control(
'suffix_text',
[
'label' => esc_html__('Number Suffix Text', 'motiox'),
'type' => Controls_Manager::TEXT,
'default' => '',
'placeholder' => esc_html__('Plus', 'motiox'),
]
);
$this->add_control(
'show_icon',
[
'label' => esc_html__('Show Icon', 'motiox'),
'type' => Controls_Manager::SWITCHER,
'label_on' => esc_html__('Show', 'motiox'),
'label_off' => esc_html__('Hide', 'motiox'),
]
);
$this->add_control(
'icon_select',
[
'label' => esc_html__('Icon select', 'motiox'),
'type' => Controls_Manager::SELECT,
'default' => 'use_icon',
'options' => [
'use_icon' => esc_html__('Use Icon', 'motiox'),
'use_image' => esc_html__('Use Image', 'motiox'),
],
'condition' => [
'show_icon' => 'yes',
],
]
);
$this->add_control(
'image',
[
'label' => esc_html__('Choose Image', 'motiox'),
'type' => Controls_Manager::MEDIA,
'default' => [
'url' => Utils::get_placeholder_image_src(),
],
'condition' => [
'icon_select' => 'use_image',
'show_icon' => 'yes',
],
]
);
$this->add_control(
'selected_icon',
[
'label' => esc_html__('Icon', 'motiox'),
'type' => Controls_Manager::ICONS,
'condition' => [
'icon_select' => 'use_icon',
'show_icon' => 'yes',
],
]
);
$this->add_control(
'duration',
[
'label' => esc_html__('Animation Duration', 'motiox'),
'type' => Controls_Manager::NUMBER,
'default' => 2000,
'min' => 100,
'step' => 100,
]
);
$this->add_control(
'thousand_separator',
[
'label' => esc_html__('Thousand Separator', 'motiox'),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => esc_html__('Show', 'motiox'),
'label_off' => esc_html__('Hide', 'motiox'),
]
);
$this->add_control(
'thousand_separator_char',
[
'label' => esc_html__('Separator', 'motiox'),
'type' => Controls_Manager::SELECT,
'condition' => [
'thousand_separator' => 'yes',
],
'options' => [
'' => 'Default',
'.' => 'Dot',
' ' => 'Space',
],
]
);
$this->add_control(
'title',
[
'label' => esc_html__('Title', 'motiox'),
'type' => Controls_Manager::TEXT,
'label_block' => true,
'default' => esc_html__('Cool Number', 'motiox'),
'placeholder' => esc_html__('Cool Number', 'motiox'),
]
);
$this->add_control(
'sub_title',
[
'label' => esc_html__('Sub Title', 'motiox'),
'type' => Controls_Manager::TEXT,
'label_block' => true,
'placeholder' => esc_html__('Sub Title', 'motiox'),
]
);
$this->add_control(
'description',
[
'label' => esc_html__('Description', 'motiox'),
'type' => Controls_Manager::TEXTAREA,
'label_block' => true,
'placeholder' => esc_html__('Description...', 'motiox'),
]
);
$this->add_control(
'view',
[
'label' => esc_html__('View', 'motiox'),
'type' => Controls_Manager::HIDDEN,
'default' => 'traditional',
]
);
$this->end_controls_section();
//wrapper
$this->start_controls_section(
'section_wrapper',
[
'label' => esc_html__('Wrapper', 'motiox'),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'content_effects',
[
'label' => esc_html__('Counter Flex', 'motiox'),
'type' => Controls_Manager::SWITCHER,
'prefix_class' => 'content-effects-'
]
);
$this->add_responsive_control(
'padding',
[
'label' => esc_html__('Padding', 'motiox'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => ['px', '%', 'em'],
'selectors' => [
'{{WRAPPER}} .elementor-counter' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'alignment',
[
'label' => esc_html__('Alignment ', 'motiox'),
'type' => Controls_Manager::CHOOSE,
'options' => [
'flex-start' => [
'title' => esc_html__('Left', 'motiox'),
'icon' => 'eicon-h-align-left',
],
'center' => [
'title' => esc_html__('Center', 'motiox'),
'icon' => 'eicon-h-align-center',
],
'flex-end' => [
'title' => esc_html__('Right', 'motiox'),
'icon' => 'eicon-h-align-right',
],
],
'default' => 'flex-start',
'selectors' => [
'{{WRAPPER}} .elementor-counter-wrapper .elementor-counter-number-wrapper' => 'justify-content: {{VALUE}}',
'{{WRAPPER}} .elementor-counter-wrapper .elementor-counter-sub-title' => 'justify-content: {{VALUE}}',
],
]
);
$this->add_responsive_control(
'testimonial_alignment',
[
'label' => esc_html__('Alignment Content', 'motiox'),
'type' => Controls_Manager::CHOOSE,
'options' => [
'left' => [
'title' => esc_html__('Left', 'motiox'),
'icon' => 'eicon-text-align-left',
],
'center' => [
'title' => esc_html__('Center', 'motiox'),
'icon' => 'eicon-text-align-center',
],
'right' => [
'title' => esc_html__('Right', 'motiox'),
'icon' => 'eicon-text-align-right',
],
],
'label_block' => false,
'selectors' => [
'{{WRAPPER}} .elementor-counter-wrapper' => 'text-align: {{VALUE}};',
],
]
);
$this->add_control(
'background_color',
[
'label' => esc_html__('Background Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter' => 'background-color: {{VALUE}};',
],
]
);
$this->add_control(
'background_color_hover',
[
'label' => esc_html__('Background Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover' => 'background-color: {{VALUE}};',
],
'condition' => [
'style_special' => 'yes',
],
]
);
$this->add_control(
'border-width',
[
'label' => esc_html__( 'Border Width', 'motiox' ),
'type' => Controls_Manager::SLIDER,
'range' => [
'px' => [
'min' => 0,
'max' => 50,
],
],
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .elementor-counter' => 'border-width: {{SIZE}}{{UNIT}};',
'{{WRAPPER}} .elementor-counter:before' => 'top: -{{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
'{{WRAPPER}} .elementor-counter:after' => 'bottom: -{{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
],
'condition' => [
'style_special2' => 'yes',
],
]
);
$this->add_control(
'border_color',
[
'label' => esc_html__('Border Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter' => 'border-color: {{VALUE}};',
'{{WRAPPER}} .elementor-counter:hover:before' => 'background-color: {{VALUE}};',
'{{WRAPPER}} .elementor-counter:hover:after' => 'background-color: {{VALUE}};',
],
'condition' => [
'style_special2' => 'yes',
],
]
);
$this->add_control(
'border_color_effect',
[
'label' => esc_html__('Border Color Effect', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:before' => 'background-color: {{VALUE}};',
'{{WRAPPER}} .elementor-counter:after' => 'background-color: {{VALUE}};',
],
'condition' => [
'style_special2' => 'yes',
],
]
);
$this->add_responsive_control(
'width_box_effect',
[
'label' => esc_html__( 'Width Box Effect', 'motiox' ),
'type' => Controls_Manager::SLIDER,
'range' => [
'px' => [
'min' => 100,
'max' => 1000,
],
'%' => [
'min' => 10,
'max' => 100,
],
],
'size_units' => [ 'px', '%'],
'selectors' => [
'{{WRAPPER}} .elementor-counter:before' => 'width: {{SIZE}}{{UNIT}}',
'{{WRAPPER}} .elementor-counter:after' => 'width: {{SIZE}}{{UNIT}}',
],
'condition' => [
'style_special2' => 'yes',
],
]
);
$this->end_controls_section();
//number
$this->start_controls_section(
'section_number',
[
'label' => esc_html__('Number', 'motiox'),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'number_color',
[
'label' => esc_html__('Text Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter-number' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'number_color_hover',
[
'label' => esc_html__('Text Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover .elementor-counter-number' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'typography_number',
'selector' => '{{WRAPPER}} .elementor-counter-number',
]
);
$this->add_responsive_control(
'spacing_number_wrapper',
[
'label' => esc_html__('Margin', 'motiox'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => ['px', 'em'],
'selectors' => [
'{{WRAPPER}} .elementor-counter-number-wrapper' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}',
],
]
);
$this->end_controls_section();
//number prefix
$this->start_controls_section(
'section_number_prefix',
[
'label' => esc_html__('Number Prefix', 'motiox'),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'number_prefix_color',
[
'label' => esc_html__('Text Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter-number-prefix' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'number_prefix_color_hover',
[
'label' => esc_html__('Text Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover .elementor-counter-number-prefix' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'typography_number_prefix',
'selector' => '{{WRAPPER}} .elementor-counter-number-prefix',
]
);
$this->add_responsive_control(
'spacing_number_prefix',
[
'label' => esc_html__( 'Spacing', 'motiox' ),
'type' => Controls_Manager::SLIDER,
'range' => [
'px' => [
'min' => 0,
'max' => 100,
],
],
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .elementor-counter-number-prefix' => 'margin-right: {{SIZE}}{{UNIT}};',
],
]
);
$this->end_controls_section();
//number suffix
$this->start_controls_section(
'section_number_suffix',
[
'label' => esc_html__('Number Suffix', 'motiox'),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'number_suffix_color',
[
'label' => esc_html__('Text Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter-number-suffix' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'number_suffix_color_hover',
[
'label' => esc_html__('Text Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover .elementor-counter-number-suffix' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'typography_number_suffix',
'selector' => '{{WRAPPER}} .elementor-counter-number-suffix',
]
);
$this->add_responsive_control(
'spacing_number_suffix',
[
'label' => esc_html__( 'Spacing', 'motiox' ),
'type' => Controls_Manager::SLIDER,
'range' => [
'px' => [
'min' => 0,
'max' => 100,
],
],
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .elementor-counter-number-suffix' => 'margin-left: {{SIZE}}{{UNIT}};',
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_number_suffix_text',
[
'label' => esc_html__('Number Suffix Text', 'motiox'),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'number_suffix_text_color',
[
'label' => esc_html__('Text Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter-number-suffix-text' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'number_suffix_text_color_hover',
[
'label' => esc_html__('Text Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover .elementor-counter-number-suffix-text' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'typography_number_suffix_text',
'selector' => '{{WRAPPER}} .elementor-counter-number-suffix-text',
]
);
$this->add_responsive_control(
'spacing_number_suffix_text',
[
'label' => esc_html__( 'Spacing', 'motiox' ),
'type' => Controls_Manager::SLIDER,
'range' => [
'px' => [
'min' => 0,
'max' => 100,
],
],
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .elementor-counter-number-suffix-text' => 'margin-left: {{SIZE}}{{UNIT}};',
],
]
);
$this->end_controls_section();
//title
$this->start_controls_section(
'section_title',
[
'label' => esc_html__('Title', 'motiox'),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => [
'title!' => '',
]
]
);
$this->add_control(
'title_color',
[
'label' => esc_html__('Text Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter-title' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'title_color_hover',
[
'label' => esc_html__('Text Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover .elementor-counter-title' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'typography_title',
'selector' => '{{WRAPPER}} .elementor-counter-title',
]
);
$this->add_responsive_control(
'title_margin',
[
'label' => esc_html__('Margin', 'motiox'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => ['px', 'em', '%'],
'selectors' => [
'{{WRAPPER}} .elementor-counter-title' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->end_controls_section();
//sub title
$this->start_controls_section(
'section_sub_title',
[
'label' => esc_html__('Sub Title', 'motiox'),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => [
'sub_title!' => '',
]
]
);
$this->add_control(
'sub_title_background_color',
[
'label' => esc_html__('Background Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter-sub-title:before' => 'background-color: {{VALUE}};',
],
]
);
$this->add_control(
'sub_title_color',
[
'label' => esc_html__('Text Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter-sub-title' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'sub_title_color_hover',
[
'label' => esc_html__('Text Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover .elementor-counter-sub-title' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'typography_sub_title',
'selector' => '{{WRAPPER}} .elementor-counter-sub-title',
]
);
$this->add_responsive_control(
'spacing_sub_title',
[
'label' => esc_html__( 'Spacing', 'motiox' ),
'type' => Controls_Manager::SLIDER,
'range' => [
'px' => [
'min' => 0,
'max' => 100,
],
],
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .elementor-counter-sub-title' => 'margin-bottom: {{SIZE}}{{UNIT}};',
],
]
);
$this->end_controls_section();
//description
$this->start_controls_section(
'section_description',
[
'label' => esc_html__('Description', 'motiox'),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => [
'description!' => '',
]
]
);
$this->add_control(
'description_color',
[
'label' => esc_html__('Text Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter-description' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'description_color_hover',
[
'label' => esc_html__('Text Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover .elementor-counter-description' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'typography_description',
'selector' => '{{WRAPPER}} .elementor-counter-description',
]
);
$this->end_controls_section();
//icon
$this->start_controls_section(
'section_icon',
[
'label' => esc_html__('Icon', 'motiox'),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => [
'icon_select' => 'use_icon',
'show_icon' => 'yes',
],
]
);
$this->add_control(
'icon_color',
[
'label' => esc_html__('Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-icon-counter' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'icon_color_hover',
[
'label' => esc_html__('Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover .elementor-icon-counter' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'icon_background_color',
[
'label' => esc_html__('Background Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-icon-counter' => 'background-color: {{VALUE}};',
],
]
);
$this->add_control(
'icon_background_color_hover',
[
'label' => esc_html__('Background Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover .elementor-icon-counter' => 'background-color: {{VALUE}};',
],
]
);
$this->add_responsive_control(
'icon_size',
[
'label' => esc_html__( 'Size', 'motiox' ),
'type' => Controls_Manager::SLIDER,
'range' => [
'px' => [
'min' => 0,
'max' => 100,
],
],
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .elementor-icon-counter' => 'font-size: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'icon_width',
[
'label' => esc_html__('Width', 'motiox'),
'type' => Controls_Manager::SLIDER,
'default' => [
'unit' => '%',
],
'tablet_default' => [
'unit' => '%',
],
'mobile_default' => [
'unit' => '%',
],
'size_units' => ['%', 'px', 'vw'],
'range' => [
'%' => [
'min' => 1,
'max' => 100,
],
'px' => [
'min' => 1,
'max' => 1000,
],
'vw' => [
'min' => 1,
'max' => 100,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-icon-counter svg' => 'width: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'icon_height',
[
'label' => esc_html__('Height', 'motiox'),
'type' => Controls_Manager::SLIDER,
'default' => [
'unit' => 'px',
],
'tablet_default' => [
'unit' => 'px',
],
'mobile_default' => [
'unit' => 'px',
],
'size_units' => ['px', 'vh'],
'range' => [
'px' => [
'min' => 1,
'max' => 500,
],
'vh' => [
'min' => 1,
'max' => 100,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-icon-counter svg' => 'height: {{SIZE}}{{UNIT}}; line-height:{{SIZE}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'icon_padding',
[
'label' => esc_html__('Padding', 'motiox'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => ['px', 'em', '%'],
'selectors' => [
'{{WRAPPER}} .elementor-icon-counter' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'icon_margin',
[
'label' => esc_html__( 'Margin', 'motiox' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .elementor-icon-counter' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_control(
'icon_border_radius',
[
'label' => esc_html__('Border Radius', 'motiox'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => ['px', '%'],
'selectors' => [
'{{WRAPPER}} .elementor-icon-counter' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->end_controls_section();
//image
$this->start_controls_section(
'section_image',
[
'label' => esc_html__('Image & SVG', 'motiox'),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => [
'icon_select' => 'use_image',
'show_icon' => 'yes',
],
]
);
$this->add_responsive_control(
'counter_width_img',
[
'label' => esc_html__('Width', 'motiox'),
'type' => Controls_Manager::SLIDER,
'range' => [
'px' => [
'min' => 100,
'max' => 1000,
],
'vh' => [
'min' => 10,
'max' => 100,
],
],
'size_units' => ['px', '%', 'vw'],
'selectors' => [
'{{WRAPPER}} .elementor-counter .elementor-icon-counter svg' => 'width: {{SIZE}}{{UNIT}}',
],
]
);
$this->add_control(
'svg_color',
[
'label' => esc_html__('Color', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
// '{{WRAPPER}} .elementor-icon-counter svg' => 'fill: {{VALUE}};',
'{{WRAPPER}} .elementor-icon-counter' => 'fill: {{VALUE}}; color: {{VALUE}}; border-color: {{VALUE}};',
],
]
);
$this->add_control(
'svg_color_hover',
[
'label' => esc_html__('Color Hover', 'motiox'),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-counter:hover .elementor-icon-counter svg' => 'fill: {{VALUE}};',
],
]
);
$this->add_responsive_control(
'image_counter_margin',
[
'label' => esc_html__('Margin', 'motiox'),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => ['px', 'em', '%'],
'selectors' => [
'{{WRAPPER}} .elementor-icon-counter img' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
'{{WRAPPER}} .elementor-icon-counter svg' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->end_controls_section();
}
/**
* Render counter widget output in the editor.
*
* Written as a Backbone JavaScript template and used to generate the live preview.
*
* @since 1.0.0
* @access protected
*/
protected function content_template() {
return;
}
/**
* Render counter widget output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @since 1.0.0
* @access protected
*/
protected function render() {
$settings = $this->get_settings_for_display();
$this->add_render_attribute('counter', [
'class' => 'elementor-counter-number',
'data-duration' => $settings['duration'],
'data-to-value' => $settings['ending_number'],
]);
if (!empty($settings['thousand_separator'])) {
$delimiter = empty($settings['thousand_separator_char']) ? ',' : $settings['thousand_separator_char'];
$this->add_render_attribute('counter', 'data-delimiter', $delimiter);
}
?>
<div class="elementor-counter">
<?php
$this->get_image_icon();
?>
<div class="elementor-counter-wrapper">
<?php if ($settings['sub_title']) : ?>
<div class="elementor-counter-sub-title"><?php $this->print_unescaped_setting('sub_title'); ?></div>
<?php endif; ?>
<div class="elementor-counter-number-wrapper">
<?php
if(!empty($settings['prefix'])) { ?>
<span class="elementor-counter-number-prefix"><?php $this->print_unescaped_setting('prefix'); ?></span>
<?php
}
?>
<span <?php $this->print_render_attribute_string('counter'); ?>><?php $this->print_unescaped_setting('starting_number'); ?></span>
<?php
if(!empty($settings['suffix'])) { ?>
<span class="elementor-counter-number-suffix"><?php $this->print_unescaped_setting('suffix'); ?></span>
<?php
}
?>
<?php
if(!empty($settings['suffix_text'])) { ?>
<span class="elementor-counter-number-suffix-text"><?php $this->print_unescaped_setting('suffix_text'); ?></span>
<?php
}
?>
</div>
<div class="elementor-counter-title-wrap">
<?php if ($settings['title']) : ?>
<div class="elementor-counter-title"><?php $this->print_unescaped_setting('title'); ?></div>
<?php endif; ?>
<?php if ($settings['description']) : ?>
<div class="elementor-counter-description"><?php $this->print_unescaped_setting('description'); ?></div>
<?php endif; ?>
</div>
</div>
</div>
<?php
}
private function get_image_icon() {
$settings = $this->get_settings_for_display();
if ('yes' === $settings['show_icon']):
?>
<div class="elementor-icon-counter">
<?php if ('use_image' === $settings['icon_select'] && !empty($settings['image']['url'])) :
$image_url = '';
$image_html = Group_Control_Image_Size::get_attachment_image_html($settings, '', 'image');
$image_url = $settings['image']['url'];
$path_parts = pathinfo($image_url);
if ($path_parts['extension'] === 'svg') {
$image = $this->get_settings_for_display('image');
$pathSvg = get_attached_file($image['id']);
$image_html = motiox_get_icon_svg($pathSvg);
}
echo sprintf('%s', $image_html);
?>
<?php elseif ('use_icon' === $settings['icon_select'] && !empty($settings['selected_icon'])) : ?>
<span class="counter_icon"><?php \Elementor\Icons_Manager::render_icon($settings['selected_icon'], ['aria-hidden' => 'true']); ?></span>
<?php endif; ?>
</div>
<?php
endif;
}
}
$widgets_manager->register(new Motiox_Elementor_Counter());