PluginProbe
Floating Button – Easily Create Sticky, Fixed & Floating Buttons / 6.0.2
Floating Button – Easily Create Sticky, Fixed & Floating Buttons v6.0.2
trunk 2.0.2 3.0 4.0 4.1.2 4.3 5.0 5.0.1 5.1 5.1.1 5.2 5.3 5.3.1 6.0 6.0.1 6.0.10 6.0.11 6.0.12 6.0.13 6.0.2 6.0.3 6.0.4 6.0.5 6.0.6 6.0.7 All 31 releases
floating-button / includes / pages / 3.tools.php

3.tools.php in Floating Button – Easily Create Sticky, Fixed & Floating Buttons 6.0.2, at includes/pages/3.tools.php

40 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Page Name: Import/Export
4 *
5 */
6
7 use FloatingButton\Dashboard\ImporterExporter;
8 use FloatingButton\WOW_Plugin;
9
10 defined( 'ABSPATH' ) || exit;
11
12 ?>
13
14 <div class="w_block w_has-border">
15
16 <div class="inside">
17 <h3><span><?php esc_attr_e( 'Export Settings', 'floating-button' ); ?></span></h3>
18 <div class="inside">
19 <p><?php
20 printf( esc_attr__( 'Export the settings for %s as a .json file. This allows you to easily import the configuration into another site.', 'floating-button' ), '<b>' . esc_attr( WOW_Plugin::info('name') ) . '</b>' ); ?></p>
21 <?php ImporterExporter::form_export(); ?>
22 </div>
23 </div>
24 <hr>
25
26 <div class="inside">
27 <h3><span><?php esc_attr_e( 'Import Settings', 'floating-button' ); ?></span></h3>
28 <div class="inside">
29 <p><?php
30 printf( esc_attr__( 'Import the %s settings from a .json file. This file can be obtained by exporting the settings on another site using the form above.', 'floating-button' ), '<b>' . esc_attr( WOW_Plugin::info('name') ) . '</b> ' ); ?></p>
31 <?php ImporterExporter::form_import(); ?>
32 </div>
33 </div>
34
35
36
37 </div>
38
39 <?php
40