PluginProbe
Elementor Website Builder – more than just a page builder / 3.8.1
Elementor Website Builder – more than just a page builder v3.8.1
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | includes/controls/icon.php +2 -6 4.2.23.8.1 View file →
@@ -12,9 +12,9 @@
12 12 * field. The control accepts `include` or `exclude` arguments to set a partial
13 13 * list of icons.
14 14 *
15 15 * @since 1.0.0
16 - * @deprecated 2.6.0 Use `Control_Icons` class instead.
16 + * @deprecated 2.6.0 use `Control_Icons` instead.
17 17 */
18 18 class Control_Icon extends Base_Data_Control {
19 19
20 20 /**
@@ -22,9 +22,8 @@
22 22 *
23 23 * Retrieve the control type, in this case `icon`.
24 24 *
25 25 * @since 1.0.0
26 - * @deprecated 2.6.0 Use `Control_Icons` class instead.
27 26 * @access public
28 27 *
29 28 * @return string Control type.
30 29 */
@@ -37,9 +36,8 @@
37 36 *
38 37 * Retrieve all the available icons.
39 38 *
40 39 * @since 1.0.0
41 - * @deprecated 2.6.0 Use `Control_Icons` class instead.
42 40 * @access public
43 41 * @static
44 42 *
45 43 * @return array Available icons.
@@ -843,9 +841,8 @@
843 841 * Retrieve the default settings of the icons control. Used to return the default
844 842 * settings while initializing the icons control.
845 843 *
846 844 * @since 1.0.0
847 - * @deprecated 2.6.0 Use `Control_Icons` class instead.
848 845 * @access protected
849 846 *
850 847 * @return array Control default settings.
851 848 */
@@ -864,9 +861,8 @@
864 861 * template. The variables for the class are available using `data` JS
865 862 * object.
866 863 *
867 864 * @since 1.0.0
868 - * @deprecated 2.6.0 Use `Control_Icons` class instead.
869 865 * @access public
870 866 */
871 867 public function content_template() {
872 868 ?>
@@ -872,9 +868,9 @@
872 868 ?>
873 869 <div class="elementor-control-field">
874 870 <label for="<?php $this->print_control_uid(); ?>" class="elementor-control-title">{{{ data.label }}}</label>
875 871 <div class="elementor-control-input-wrapper">
876 - <select id="<?php $this->print_control_uid(); ?>" class="elementor-control-icon" data-setting="{{ data.name }}" data-placeholder="<?php echo esc_attr__( 'Select Icon', 'elementor' ); ?>">
872 + <select id="<?php $this->print_control_uid(); ?>" class="elementor-control-icon" data-setting="{{ data.name }}" data-placeholder="<?php echo esc_html__( 'Select Icon', 'elementor' ); ?>">
877 873 <option value=""><?php echo esc_html__( 'Select Icon', 'elementor' ); ?></option>
878 874 <# _.each( data.options, function( option_title, option_value ) { #>
879 875 <option value="{{ option_value }}">{{{ option_title }}}</option>
880 876 <# } ); #>