PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.2.14
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.2.14
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 / app / Views / admin / tools / index.php

index.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 6.2.14, at app/Views/admin/tools/index.php

129 lines 5.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined('ABSPATH') or die;
4
5 use FluentForm\App\Helpers\Helper;
6 ?>
7 <?php
8 do_action_deprecated(
9 'fluentform_global_menu',
10 [
11 ],
12 FLUENTFORM_FRAMEWORK_UPGRADE,
13 'fluentform/global_menu',
14 'Use fluentform/global_menu instead of fluentform_global_menu.'
15 );
16 do_action('fluentform/global_menu');
17 ?>
18
19 <div class="ff_form_wrap ff_tools_wrap">
20 <div class="global-overlay" id="global-overlay"></div>
21 <div class="ff_form_wrap_area">
22 <div class="ff_admin_menu_wrapper ff_layout_section">
23 <?php
24 do_action_deprecated(
25 'fluentform_before_export_import_wrapper',
26 [
27 ],
28 FLUENTFORM_FRAMEWORK_UPGRADE,
29 'fluentform/before_tools_wrapper',
30 'Use fluentform/before_tools_wrapper instead of fluentform_before_export_import_wrapper.'
31 );
32 do_action('fluentform/before_tools_wrapper');
33 ?>
34
35 <div class="ff_settings_sidebar_wrap">
36 <span class="ff_sidebar_toggle" title="Toggle Setting">
37 <i class="ff-icon ff-icon-arrow-right"></i>
38 </span>
39 <div class="ff_admin_menu_sidebar ff_layout_section_sidebar">
40 <ul class="ff_admin_menu_list ff_list_button">
41 <li class="ff_list_button_item active">
42 <a class="ff_list_button_link" data-hash="exportforms"
43 href="<?php echo esc_url(Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'exportforms'])); ?>"
44 >
45 <?php esc_html_e('Export Forms', 'fluentform'); ?>
46 </a>
47 </li>
48 <li class="ff_list_button_item">
49 <a class="ff_list_button_link" data-hash="importforms"
50 href="<?php echo esc_url(Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'importforms'])); ?>"
51 >
52 <?php esc_html_e('Import Forms', 'fluentform'); ?>
53 </a>
54 </li>
55 <li class="ff_list_button_item">
56 <a class="ff_list_button_link" data-hash="importentries"
57 href="<?php echo esc_url(Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'importentries'])); ?>"
58 >
59 <?php esc_html_e('Import Entries', 'fluentform'); ?>
60 </a>
61 </li>
62 <li class="ff_list_button_item">
63 <a class="ff_list_button_link" data-hash="migrator"
64 href="<?php echo esc_url(Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'migrator'])); ?>"
65 >
66 <?php esc_html_e('Migrator', 'fluentform'); ?>
67 </a>
68 </li>
69
70 <li class="ff_list_button_item">
71 <a class="ff_list_button_link" data-hash="activitylogs"
72 href="<?php echo esc_url(Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'activitylogs'])); ?>"
73 >
74 <?php esc_html_e('Activity Logs', 'fluentform'); ?>
75 </a>
76 </li>
77 <li class="ff_list_button_item">
78 <a class="ff_list_button_link" data-hash="apilogs"
79 href="<?php echo esc_url(Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'apilogs'])); ?>"
80 >
81 <?php esc_html_e('API Logs', 'fluentform'); ?>
82 </a>
83 </li>
84 </ul>
85 </div>
86 </div>
87 <div class="ff_admin_menu_container ff_layout_section_container">
88 <?php
89 do_action_deprecated(
90 'fluentform_before_export_import_container',
91 [
92 ],
93 FLUENTFORM_FRAMEWORK_UPGRADE,
94 'fluentform/before_tools_container',
95 'Use fluentform/before_tools_container instead of fluentform_before_export_import_container.'
96 );
97 do_action('fluentform/before_tools_container');
98 ?>
99 <div class="ff_transfer" id="ff_transfer_app">
100 <component :is="component" :app="App"></component>
101 <global-search></global-search>
102 </div>
103 <?php
104 do_action_deprecated(
105 'fluentform_after_export_import_container',
106 [
107 ],
108 FLUENTFORM_FRAMEWORK_UPGRADE,
109 'fluentform/after_tools_container',
110 'Use fluentform/after_tools_container instead of fluentform_after_export_import_container.'
111 );
112 do_action('fluentform/after_tools_container');
113 ?>
114 </div>
115 <?php
116 do_action_deprecated(
117 'fluentform_after_export_import_wrapper',
118 [
119 ],
120 FLUENTFORM_FRAMEWORK_UPGRADE,
121 'fluentform/after_tools_wrapper',
122 'Use fluentform/after_tools_wrapper instead of fluentform_after_export_import_wrapper.'
123 );
124 do_action('fluentform/after_tools_wrapper');
125 ?>
126 </div>
127 </div>
128 </div>
129