PluginProbe
Elementor Website Builder – more than just a page builder / 3.4.8
Elementor Website Builder – more than just a page builder v3.4.8
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 +1 -6 4.2.23.4.8 View file →
@@ -12,9 +12,8 @@
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.
17 16 */
18 17 class Control_Icon extends Base_Data_Control {
19 18
20 19 /**
@@ -22,9 +21,8 @@
22 21 *
23 22 * Retrieve the control type, in this case `icon`.
24 23 *
25 24 * @since 1.0.0
26 - * @deprecated 2.6.0 Use `Control_Icons` class instead.
27 25 * @access public
28 26 *
29 27 * @return string Control type.
30 28 */
@@ -37,9 +35,8 @@
37 35 *
38 36 * Retrieve all the available icons.
39 37 *
40 38 * @since 1.0.0
41 - * @deprecated 2.6.0 Use `Control_Icons` class instead.
42 39 * @access public
43 40 * @static
44 41 *
45 42 * @return array Available icons.
@@ -843,9 +840,8 @@
843 840 * Retrieve the default settings of the icons control. Used to return the default
844 841 * settings while initializing the icons control.
845 842 *
846 843 * @since 1.0.0
847 - * @deprecated 2.6.0 Use `Control_Icons` class instead.
848 844 * @access protected
849 845 *
850 846 * @return array Control default settings.
851 847 */
@@ -864,9 +860,8 @@
864 860 * template. The variables for the class are available using `data` JS
865 861 * object.
866 862 *
867 863 * @since 1.0.0
868 - * @deprecated 2.6.0 Use `Control_Icons` class instead.
869 864 * @access public
870 865 */
871 866 public function content_template() {
872 867 ?>
@@ -872,9 +867,9 @@
872 867 ?>
873 868 <div class="elementor-control-field">
874 869 <label for="<?php $this->print_control_uid(); ?>" class="elementor-control-title">{{{ data.label }}}</label>
875 870 <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' ); ?>">
871 + <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 872 <option value=""><?php echo esc_html__( 'Select Icon', 'elementor' ); ?></option>
878 873 <# _.each( data.options, function( option_title, option_value ) { #>
879 874 <option value="{{ option_value }}">{{{ option_title }}}</option>
880 875 <# } ); #>