/home/techb158/l2hypotheques.com/wp-content/plugins/elementor/includes/controls
NameSizeModeActions
groups/-0755rm
alert.php18380644editdlrm
animation.php48700644editdlrm
base-data.php37500644editdlrm
base-icon-font.php5800644editdlrm
base-multiple.php20820644editdlrm
base-ui.php5160644editdlrm
base-units.php35790644editdlrm
base.php31540644editdlrm
box-shadow.php34740644editdlrm
button.php17180644editdlrm
choose.php22390644editdlrm
code.php20380644editdlrm
color.php20840644editdlrm
date-time.php20850644editdlrm
deprecated-notice.php23280644editdlrm
dimensions.php51200644editdlrm
divider.php8290644editdlrm
exit-animation.php26030644editdlrm
font.php22690644editdlrm
gallery.php74330644editdlrm
gaps.php16570644editdlrm
heading.php13480644editdlrm
hidden.php9480644editdlrm
hover-animation.php44250644editdlrm
icon.php320770644editdlrm
icons.php77480644editdlrm
image-dimensions.php37970644editdlrm
media.php153060644editdlrm
notice.php41690644editdlrm
number.php28310644editdlrm
popover-toggle.php27280644editdlrm
raw-html.php15190644editdlrm
repeater.php50830644editdlrm
section.php13620644editdlrm
select.php26250644editdlrm
select2.php27810644editdlrm
slider.php35720644editdlrm
structure.php25210644editdlrm
switcher.php21260644editdlrm
tab.php10300644editdlrm
tabs.php9440644editdlrm
text-shadow.php32080644editdlrm
text.php21300644editdlrm
textarea.php20540644editdlrm
url.php52490644editdlrm
visual-choice.php22040644editdlrm
wp-widget.php13780644editdlrm
wysiwyg.php17760644editdlrm
Edit: /home/techb158/l2hypotheques.com/wp-content/plugins/elementor/includes/controls/base.php (3154B)
'', 'description' => '', 'show_label' => true, 'label_block' => false, 'separator' => 'default', ]; /** * Get features. * * Retrieve the list of all the available features. Currently Elementor uses only * the `UI` feature. * * @since 1.5.0 * @access public * @static * * @return array Features array. */ public static function get_features() { return []; } /** * Get control type. * * Retrieve the control type. * * @since 1.5.0 * @access public * @abstract */ abstract public function get_type(); /** * Control base constructor. * * Initializing the control base class. * * @since 1.5.0 * @access public */ public function __construct() { $this->set_settings( array_merge( $this->_base_settings, $this->get_default_settings() ) ); $this->set_settings( 'features', static::get_features() ); } /** * Enqueue control scripts and styles. * * Used to register and enqueue custom scripts and styles used by the control. * * @since 1.5.0 * @access public */ public function enqueue() {} /** * Control content template. * * Used to generate the control HTML in the editor using Underscore JS * template. The variables for the class are available using `data` JS * object. * * Note that the content template is wrapped by Base_Control::print_template(). * * @since 1.5.0 * @access public * @abstract */ abstract public function content_template(); /** * Print control template. * * Used to generate the control HTML in the editor using Underscore JS * template. The variables for the class are available using `data` JS * object. * * @since 1.5.0 * @access public */ final public function print_template() { ?>