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 / group.php

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

16 lines 556 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 function easyel_field_group($field, $settings){
3 echo '<div class="easyel-settings-field-group">';
4 foreach($field['options'] as $sub){
5 $name = $field['name'].'['.$sub['name'].']';
6 $sub['full_name'] = $name;
7 $value = $settings[$field['name']][$sub['name']] ?? ($sub['default'] ?? '');
8 $type = $sub['type'];
9 $file = __DIR__.'/'.$type.'.php';
10 if(file_exists($file)) include $file;
11 $fn = 'easyel_field_'.$type;
12 if(function_exists($fn)) $fn($sub,$value);
13 }
14 echo '</div>';
15 }
16 ?>