# fluentform/1.2.4/resources/views/admin/transfer/index.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 1.2.4. 46 lines.

- Page: https://pluginprobe.com/plugins/fluentform/1.2.4/code/resources/views/admin/transfer/index.php
- Raw: https://pluginprobe.com/plugins/fluentform/1.2.4/raw/resources/views/admin/transfer/index.php
- Modified: 2018-01-24T15:32:52+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/fluentform/1.2.4/code/resources/views/admin/transfer/index.php#L10-L20`.

```php
<?php

use FluentForm\App\Helpers\Helper;

?>

<h2><?php _e('FluentForm Export/Import', 'fluentform'); ?></h2>

<div class="ff_form_wrap">
    <div class="ff_admin_menu_wrapper">
        <?php do_action('fluentform_before_export_import_wrapper'); ?>

        <div class="ff_admin_menu_sidebar">
            <ul class="ff_admin_menu_list">
                <li class="active">
                    <a data-hash="exportforms"
                       href="<?php echo Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'exportforms']); ?>"
                    >
                        <?= __('Export Forms'); ?>
                    </a>
                </li>

                <li>
                    <a data-hash="importforms"
                       href="<?php echo Helper::makeMenuUrl('fluent_forms_transfer', ['hash' => 'importforms']); ?>"
                    >
                        <?= __('Import Forms'); ?>
                    </a>
                </li>
            </ul>
        </div>

        <div class="ff_admin_menu_container">
            <?php do_action('fluentform_before_export_import_container'); ?>

            <div class="ff_transfer" id="ff_transfer_app">
                <component :is="component" :app="App"></component>
            </div>

            <?php do_action('fluentform_after_before_export_import_container'); ?>
        </div>

        <?php do_action('fluentform_after_export_import_wrapper'); ?>
    </div>
</div>

```
