芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentform/app/Modules/Transfer/Transfer.php
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'); wp_send_json(TransferService::importForms($file), 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); } } }