PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 3.6.41
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v3.6.41
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 / transfer / index.php

index.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 3.6.41, at resources/views/admin/transfer/index.php

49 lines 1.8 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 ?>
5 <?php do_action('fluentform_global_menu'); ?>
6 <h2><?php _e('Tools', 'fluentform'); ?></h2>
7
8 <div class="ff_form_wrap">
9 <div class="ff_admin_menu_wrapper">
10 <?php do_action('fluentform_before_export_import_wrapper'); ?>
11
12 <div class="ff_admin_menu_sidebar">
13 <ul class="ff_admin_menu_list">
14 <li class="active">
15 <a data-hash="exportforms"
16 href="<?php echo Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'exportforms']); ?>"
17 >
18 <?php echo __('Export Forms', 'fluentform'); ?>
19 </a>
20 </li>
21 <li>
22 <a data-hash="importforms"
23 href="<?php echo Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'importforms']); ?>"
24 >
25 <?php echo __('Import Forms', 'fluentform'); ?>
26 </a>
27 </li>
28 <li>
29 <a data-hash="activity-logs"
30 href="<?php echo Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'activity-logs']); ?>"
31 >
32 <?php echo __('Activity Logs', 'fluentform'); ?>
33 </a>
34 </li>
35 </ul>
36 </div>
37
38 <div class="ff_admin_menu_container">
39 <?php do_action('fluentform_before_export_import_container'); ?>
40 <div class="ff_transfer" id="ff_transfer_app">
41 <component :is="component" :app="App"></component>
42 </div>
43 <?php do_action('fluentform_after_before_export_import_container'); ?>
44 </div>
45
46 <?php do_action('fluentform_after_export_import_wrapper'); ?>
47 </div>
48 </div>
49