文件操作 - Inputs.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/steemteam/public_html/wp-content/plugins/fluentform/app/Modules/Form/Inputs.php
编辑文件内容
<?php namespace FluentForm\App\Modules\Form; use FluentForm\App\Services\Form\Fields; use FluentForm\Framework\Foundation\Application; class Inputs { /** * Request object * * @var \FluentForm\Framework\Request\Request */ private $request; /** * Build the class instance * * @throws \Exception */ public function __construct(Application $application) { $this->request = $application->request; } /** * Get all the flatten form inputs for shortcode generation. */ public function index() { $formId = $this->request->get('formId'); wp_send_json((new Fields())->get($formId), 200); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件