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 / form / settings_wrapper.php

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

19 lines 870 B
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 <li class="<?php if($settings_menu['slug'] == $current_sub_route) { echo "active"; } ?>">
9 <a 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']; } ?>">
10 <?php echo $settings_menu['title']; ?>
11 </a>
12 </li>
13 <?php endforeach; ?>
14 </ul>
15 </div>
16 <div class="ff_settings_container">
17 <?php do_action('fluentform_form_settings_container_'.$current_sub_route, $form_id); ?>
18 </div>
19 </div>