| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- <?php
- namespace Elementor;
- if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
- }
- /**
- * Elementor counter widget.
- *
- * Elementor widget that displays stats and numbers in an escalating manner.
- *
- * @since 1.0.0
- */
- class Widget_Counter extends 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 __( 'Counter', 'elementor' );
- }
- /**
- * 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' ];
- }
- /**
- * Get widget keywords.
- *
- * Retrieve the list of keywords the widget belongs to.
- *
- * @since 2.1.0
- * @access public
- *
- * @return array Widget keywords.
- */
- public function get_keywords() {
- return [ 'counter' ];
- }
- /**
- * 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' => __( 'Counter', 'elementor' ),
- ]
- );
- $this->add_control(
- 'starting_number',
- [
- 'label' => __( 'Starting Number', 'elementor' ),
- 'type' => Controls_Manager::NUMBER,
- 'default' => 0,
- ]
- );
- $this->add_control(
- 'ending_number',
- [
- 'label' => __( 'Ending Number', 'elementor' ),
- 'type' => Controls_Manager::NUMBER,
- 'default' => 100,
- ]
- );
- $this->add_control(
- 'prefix',
- [
- 'label' => __( 'Number Prefix', 'elementor' ),
- 'type' => Controls_Manager::TEXT,
- 'default' => '',
- 'placeholder' => 1,
- ]
- );
- $this->add_control(
- 'suffix',
- [
- 'label' => __( 'Number Suffix', 'elementor' ),
- 'type' => Controls_Manager::TEXT,
- 'default' => '',
- 'placeholder' => __( 'Plus', 'elementor' ),
- ]
- );
- $this->add_control(
- 'duration',
- [
- 'label' => __( 'Animation Duration', 'elementor' ),
- 'type' => Controls_Manager::NUMBER,
- 'default' => 2000,
- 'min' => 100,
- 'step' => 100,
- ]
- );
- $this->add_control(
- 'thousand_separator',
- [
- 'label' => __( 'Thousand Separator', 'elementor' ),
- 'type' => Controls_Manager::SWITCHER,
- 'default' => 'yes',
- 'label_on' => __( 'Show', 'elementor' ),
- 'label_off' => __( 'Hide', 'elementor' ),
- ]
- );
- $this->add_control(
- 'thousand_separator_char',
- [
- 'label' => __( 'Separator', 'elementor' ),
- 'type' => Controls_Manager::SELECT,
- 'condition' => [
- 'thousand_separator' => 'yes',
- ],
- 'options' => [
- '' => 'Default',
- '.' => 'Dot',
- ' ' => 'Space',
- ],
- ]
- );
- $this->add_control(
- 'title',
- [
- 'label' => __( 'Title', 'elementor' ),
- 'type' => Controls_Manager::TEXT,
- 'label_block' => true,
- 'default' => __( 'Cool Number', 'elementor' ),
- 'placeholder' => __( 'Cool Number', 'elementor' ),
- ]
- );
- $this->add_control(
- 'view',
- [
- 'label' => __( 'View', 'elementor' ),
- 'type' => Controls_Manager::HIDDEN,
- 'default' => 'traditional',
- ]
- );
- $this->end_controls_section();
- $this->start_controls_section(
- 'section_number',
- [
- 'label' => __( 'Number', 'elementor' ),
- 'tab' => Controls_Manager::TAB_STYLE,
- ]
- );
- $this->add_control(
- 'number_color',
- [
- 'label' => __( 'Text Color', 'elementor' ),
- 'type' => Controls_Manager::COLOR,
- 'scheme' => [
- 'type' => Scheme_Color::get_type(),
- 'value' => Scheme_Color::COLOR_1,
- ],
- 'selectors' => [
- '{{WRAPPER}} .elementor-counter-number-wrapper' => 'color: {{VALUE}};',
- ],
- ]
- );
- $this->add_group_control(
- Group_Control_Typography::get_type(),
- [
- 'name' => 'typography_number',
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
- 'selector' => '{{WRAPPER}} .elementor-counter-number-wrapper',
- ]
- );
- $this->end_controls_section();
- $this->start_controls_section(
- 'section_title',
- [
- 'label' => __( 'Title', 'elementor' ),
- 'tab' => Controls_Manager::TAB_STYLE,
- ]
- );
- $this->add_control(
- 'title_color',
- [
- 'label' => __( 'Text Color', 'elementor' ),
- 'type' => Controls_Manager::COLOR,
- 'scheme' => [
- 'type' => Scheme_Color::get_type(),
- 'value' => Scheme_Color::COLOR_2,
- ],
- 'selectors' => [
- '{{WRAPPER}} .elementor-counter-title' => 'color: {{VALUE}};',
- ],
- ]
- );
- $this->add_group_control(
- Group_Control_Typography::get_type(),
- [
- 'name' => 'typography_title',
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
- 'selector' => '{{WRAPPER}} .elementor-counter-title',
- ]
- );
- $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() {
- ?>
- <div class="elementor-counter">
- <div class="elementor-counter-number-wrapper">
- <span class="elementor-counter-number-prefix">{{{ settings.prefix }}}</span>
- <span class="elementor-counter-number" data-duration="{{ settings.duration }}" data-to-value="{{ settings.ending_number }}" data-delimiter="{{ settings.thousand_separator ? settings.thousand_separator_char || ',' : '' }}">{{{ settings.starting_number }}}</span>
- <span class="elementor-counter-number-suffix">{{{ settings.suffix }}}</span>
- </div>
- <# if ( settings.title ) {
- #><div class="elementor-counter-title">{{{ settings.title }}}</div><#
- } #>
- </div>
- <?php
- }
- /**
- * 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">
- <div class="elementor-counter-number-wrapper">
- <span class="elementor-counter-number-prefix"><?php echo $settings['prefix']; ?></span>
- <span <?php echo $this->get_render_attribute_string( 'counter' ); ?>><?php echo $settings['starting_number']; ?></span>
- <span class="elementor-counter-number-suffix"><?php echo $settings['suffix']; ?></span>
- </div>
- <?php if ( $settings['title'] ) : ?>
- <div class="elementor-counter-title"><?php echo $settings['title']; ?></div>
- <?php endif; ?>
- </div>
- <?php
- }
- }
|