PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 1.2.4
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v1.2.4
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
fluentform / resources / views / admin / settings / index.php

index.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 1.2.4, at resources/views/admin/settings/index.php

44 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 use FluentForm\App\Helpers\Helper;
4 use FluentForm\Framework\Helpers\ArrayHelper;
5
6 ?>
7 <h2><?php _e('FluentForm Global Settings', 'fluentform'); ?></h2>
8 <div class="ff_form_wrap">
9 <div class="ff_settings_wrapper">
10 <?php do_action('fluentform_before_global_settings_wrapper'); ?>
11
12 <div class="ff_settings_sidebar">
13 <ul class="ff_settings_list">
14
15 <li class="<?= Helper::getHtmlElementClass('settings', $currentComponent); ?>">
16 <a data-hash="settings"
17 href="<?= Helper::makeMenuUrl('fluent_forms_settings', [
18 'hash' => 'settings'
19 ]); ?>"
20 >
21 <?= __('Settings'); ?>
22 </a>
23 </li>
24
25 <?php foreach ($components as $component): ?>
26 <li class="<?= Helper::getHtmlElementClass($component['hash'], $currentComponent); ?>">
27 <a data-hash="<?php echo ArrayHelper::get($component, 'hash', ''); ?>"
28 href="<?php echo Helper::makeMenuUrl('fluent_forms_settings', $component); ?>"
29 >
30 <?php echo $component['title']; ?>
31 </a>
32 </li>
33 <?php endforeach; ?>
34 </ul>
35 </div>
36
37 <div class="ff_settings_container">
38 <?php do_action('fluentform_global_settings_component_'.$currentComponent); ?>
39 </div>
40
41 <?php do_action('fluentform_after_global_settings_wrapper'); ?>
42 </div>
43 </div>
44