文件操作 - AnalyticsController.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/fluentform/app/Http/Controllers/AnalyticsController.php
编辑文件内容
<?php namespace FluentForm\App\Http\Controllers; use Exception; use FluentForm\App\Services\Analytics\AnalyticsService; use FluentForm\App\Services\Browser\Browser; use FluentForm\App\Services\Form\FormService; class AnalyticsController extends Controller { public function reset(AnalyticsService $analyticsService,$formId) { try { return $this->sendSuccess( $analyticsService->reset(intval($formId)) ); } catch (\Exception $e) { return $this->sendError([ 'message' => __('Something went wrong, please try again!', 'fluentform'), 'error' => $e->getMessage(), ]); } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件