PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.2.1
Easy Elements for Elementor – Addons & Website Templates v1.2.1
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / admin / settings-framework / fields / select.php

select.php in Easy Elements for Elementor – Addons & Website Templates 1.2.1, at admin/settings-framework/fields/select.php

9 lines 357 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 function easyel_field_select($sub_field, $value){
3 echo '<select name="'.esc_attr($sub_field['full_name']).'" class="easyel-settings-field-input">';
4 foreach($sub_field['options'] as $val => $label){
5 echo '<option value="'.esc_attr($val).'" '.selected($value,$val,false).'>'.esc_html($label).'</option>';
6 }
7 echo '</select>';
8 }
9 ?>