whoami7 - Manager
:
/
home
/
analuakl
/
bents.in
/
wp-content
/
themes
/
medizin
/
elementor
/
widgets
/
original
/
Upload File:
files >> /home/analuakl/bents.in/wp-content/themes/medizin/elementor/widgets/original/counter.php
<?php namespace Medizin_Elementor; use Elementor\Controls_Manager; defined( 'ABSPATH' ) || exit; class Modify_Widget_Counter extends Modify_Base { private static $_instance = null; public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } public function initialize() { add_action( 'elementor/element/counter/section_title/before_section_end', [ $this, 'before_section_title_end', ] ); } /** * @param \Elementor\Widget_Base $element The edited element. */ public function before_section_title_end( $element ) { $element->add_responsive_control( 'title_margin', [ 'label' => esc_html__( 'Margin', 'medizin' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%', 'em' ], 'selectors' => [ '{{WRAPPER}} .elementor-counter .elementor-counter-title' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); } } Modify_Widget_Counter::instance()->initialize();
Copyright ©2021 || Defacer Indonesia