# floating-button/6.0.12/includes/pages/3.tools.php

Floating Button – Easily Create Sticky, Fixed &amp; Floating Buttons, version 6.0.12. 42 lines.

- Page: https://pluginprobe.com/plugins/floating-button/6.0.12/code/includes/pages/3.tools.php
- Raw: https://pluginprobe.com/plugins/floating-button/6.0.12/raw/includes/pages/3.tools.php
- Modified: 2025-07-06T05:55:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/floating-button/6.0.12/code/includes/pages/3.tools.php#L10-L20`.

```php
<?php
/**
 * Page Name: Import/Export
 *
 */

use FloatingButton\Dashboard\ImporterExporter;
use FloatingButton\WOW_Plugin;

defined( 'ABSPATH' ) || exit;

?>

    <div class="w_block w_has-border">

                <div class="inside">
                    <h3><span><?php esc_attr_e( 'Export Settings', 'floating-button' ); ?></span></h3>
                    <div class="inside">
                        <p><?php
	                        /* translators: %s: plugin name */
							printf( esc_html__( '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>
						<?php ImporterExporter::form_export(); ?>
                    </div>
                </div>
                <hr>

                <div class="inside">
                    <h3><span><?php esc_attr_e( 'Import Settings', 'floating-button' ); ?></span></h3>
                    <div class="inside">
                        <p><?php
	                        /* translators: %s: plugin name */
							printf( esc_html__( '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>
						<?php ImporterExporter::form_import(); ?>
                    </div>
                </div>



    </div>

<?php

```
