| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/AIWEBSTATION/wp-content/plugins/fluentform/app/Modules/Transfer/ |
Upload File : |
<?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);
}
}
}