PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 3.6.61
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v3.6.61
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 3.6.61, at resources/views/admin/settings/index.php

51 lines 2.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 <?php do_action('fluentform_global_menu'); ?>
8
9 <div class="ff_form_wrap">
10 <div class="ff_form_wrap_area">
11 <h2><?php _e('Fluent Forms Global Settings', 'fluentform'); ?></h2>
12 <div class="ff_settings_wrapper">
13 <?php do_action('fluentform_before_global_settings_wrapper'); ?>
14 <div class="ff_settings_sidebar">
15 <ul class="ff_settings_list">
16 <li class="<?php echo Helper::getHtmlElementClass('settings', $currentComponent); ?>">
17 <a data-hash="settings"
18 href="<?php echo Helper::makeMenuUrl('fluent_forms_settings', [
19 'hash' => 'settings'
20 ]); ?>">
21 <?php echo __('Settings'); ?>
22 </a>
23 </li>
24 <li class="<?php echo Helper::getHtmlElementClass('double_optin_settings', $currentComponent); ?> ff_menu_item_double_optin">
25 <a data-hash="double_optin_settings"
26 href="<?php echo Helper::makeMenuUrl('fluent_forms_settings', [
27 'hash' => 'double_optin_settings'
28 ]); ?>">
29 <?php echo __('Double Optin Settings', 'fluentform'); ?>
30 </a>
31 </li>
32 <?php foreach ($components as $componentName => $component): ?>
33 <li class="<?php echo Helper::getHtmlElementClass($component['hash'], $currentComponent); ?> ff_item_<?php echo $componentName; ?>">
34 <a data-settings_key="<?php echo ArrayHelper::get($component, 'settings_key'); ?>"
35 data-component="<?php echo ArrayHelper::get($component, 'component', ''); ?>"
36 data-hash="<?php echo ArrayHelper::get($component, 'hash', ''); ?>"
37 href="<?php echo Helper::makeMenuUrl('fluent_forms_settings', $component); ?>"
38 >
39 <?php echo $component['title']; ?>
40 </a>
41 </li>
42 <?php endforeach; ?>
43 </ul>
44 </div>
45 <div class="ff_settings_container">
46 <?php do_action('fluentform_global_settings_component_' . $currentComponent); ?>
47 </div>
48 <?php do_action('fluentform_after_global_settings_wrapper'); ?>
49 </div>
50 </div>
51 </div>