PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 4.3.17
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v4.3.17
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 4.3.17, at resources/views/admin/form/settings_wrapper.php

29 lines 1.8 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&sub_route=form_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 data-route_key="<?php echo esc_attr($route); ?>" href="<?php echo esc_url($settings_base_url); ?>#<?php echo esc_attr($route); ?>">
15 <?php echo esc_html($settings_menu['title']); ?>
16 </a>
17 <?php else: ?>
18 <a <?php if(isset($settings_menu['class'])) { echo 'class="'. esc_attr($settings_menu['class']).'"'; } ?> data-settings_key="<?php echo (isset($settings_menu['settings_key'])) ? esc_attr($settings_menu['settings_key']) : '';?>" data-component="<?php echo (isset($settings_menu['component'])) ? esc_attr($settings_menu['component']) : '';?>" data-hash="<?php echo (isset($settings_menu['hash'])) ? esc_attr($settings_menu['hash']) : '';?>" href="<?php echo esc_url($settings_base_url).'&sub_route='. esc_attr($settings_menu['slug']); ?><?php if(isset($settings_menu['hash'])) { echo '#'. esc_attr($settings_menu['hash']); } ?>">
19 <?php echo esc_html($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>