PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 3.6.60
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v3.6.60
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 / form / settings_wrapper.php

settings_wrapper.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 3.6.60, at resources/views/admin/form/settings_wrapper.php

29 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="ff_settings_wrapper">
2 <div class="ff_settings_sidebar">
3 <ul class="ff_settings_list">
4 <?php
5 $settings_base_url = admin_url('admin.php?page=fluent_forms&form_id='.$form_id.'&route=settings');
6 ?>
7 <?php foreach ($settings_menus as $settings_menu): ?>
8
9 <li class="<?php if($settings_menu['slug'] == $current_sub_route) { echo "activex"; } ?>">
10 <?php if(isset($settings_menu['route'])): ?>
11 <?php
12 $route = $settings_menu['route'];
13 ?>
14 <a href="#<?php echo $route; ?>">
15 <?php echo $settings_menu['title']; ?>
16 </a>
17 <?php else: ?>
18 <a data-settings_key="<?php echo (isset($settings_menu['settings_key'])) ? $settings_menu['settings_key'] : '';?>" data-component="<?php echo (isset($settings_menu['component'])) ? $settings_menu['component'] : '';?>" data-hash="<?php echo (isset($settings_menu['hash'])) ? $settings_menu['hash'] : '';?>" href="<?php echo $settings_base_url.'&sub_route='.$settings_menu['slug']; ?><?php if(isset($settings_menu['hash'])) { echo '#'.$settings_menu['hash']; } ?>">
19 <?php echo $settings_menu['title']; ?>
20 </a>
21 <?php endif; ?>
22 </li>
23 <?php endforeach; ?>
24 </ul>
25 </div>
26 <div class="ff_settings_container">
27 <?php do_action('fluentform_form_settings_container_'.$current_sub_route, $form_id); ?>
28 </div>
29 </div>