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 / transfer / index.php

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

66 lines 2.6 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 esc_url(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 esc_url(Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'importforms'])); ?>"
24 >
25 <?php echo __('Import Forms', 'fluentform'); ?>
26 </a>
27 </li>
28 <?php if ( ( new FluentForm\App\Services\Migrator\Bootstrap())->hasOtherForms()): ?>
29 <li>
30 <a data-hash="migrator"
31 href="<?php echo esc_url(Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'migrator'])); ?>"
32 >
33 <?php echo __('Migrator', 'fluentform'); ?>
34 </a>
35 </li>
36 <?php endif; ?>
37
38 <li>
39 <a data-hash="activitylogs"
40 href="<?php echo esc_url(Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'activitylogs'])); ?>"
41 >
42 <?php echo __('Activity Logs', 'fluentform'); ?>
43 </a>
44 </li>
45 <li>
46 <a data-hash="apilogs"
47 href="<?php echo esc_url(Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'apilogs'])); ?>"
48 >
49 <?php echo __('API Logs', 'fluentform'); ?>
50 </a>
51 </li>
52 </ul>
53 </div>
54
55 <div class="ff_admin_menu_container">
56 <?php do_action('fluentform_before_export_import_container'); ?>
57 <div class="ff_transfer" id="ff_transfer_app">
58 <component :is="component" :app="App"></component>
59 </div>
60 <?php do_action('fluentform_after_before_export_import_container'); ?>
61 </div>
62
63 <?php do_action('fluentform_after_export_import_wrapper'); ?>
64 </div>
65 </div>
66