PHP 8.0.30
Preview: Transfer.php Size: 1.54 KB
/home/certprox/zang.certproxywizard.com/wp/wp-content/plugins/fluentform/app/Modules/Transfer/Transfer.php

<?php
namespace FluentForm\App\Modules\Transfer;

use Exception;
use FluentForm\App\Services\Transfer\TransferService;
use FluentForm\Framework\Foundation\App;

class Transfer
{

    /**
     * Request object
     *
     * @var \FluentForm\Framework\Request\Request $request
     */
    protected $request = null;


    public function __construct()
    {
        $this->request = App::getInstance()->make('request');
    }


    /**
     * Export forms as JSON.
     */
    public function exportForms()
    {
        try {
            $formIds = $this->request->get('forms');
            TransferService::exportForms($formIds);
        } catch (Exception $exception) {
            wp_send_json([
                'message' => $exception->getMessage()
            ], 424);
        }
    }

    /**
     * Import forms from a previously exported JSON file.
     */
    public function importForms()
    {
        try {
            $file = $this->request->file('file');
            $applyDefaultStyle = $this->request->get('apply_default_style') === '1';
            wp_send_json(TransferService::importForms($file, $applyDefaultStyle), 200);
        } catch (Exception $exception) {
            wp_send_json([
                'message' => $exception->getMessage()
            ], 424);
        }
    }

    public function exportEntries() {
        try {
            TransferService::exportEntries($this->request->get());
        } catch (Exception $exception) {
            wp_send_json([
                'message' => $exception->getMessage()
            ], 424);
        }
    }

}

Directory Contents

Dirs: 0 × Files: 1

Name Size Perms Modified Actions
1.54 KB lrw-r--r-- 2026-03-30 10:23:21
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).