文件操作 - api.php
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/plugin-wordpress/metform/base/api.php
编辑文件内容
<?php namespace MetForm\Base; defined('ABSPATH') || exit; abstract class Api { public $prefix = ''; public $param = ''; public $request = null; public function __construct() { $this->config(); $this->init(); } public abstract function config(); public function init() { add_action('rest_api_init', function () { register_rest_route(untrailingslashit('metform/v1/' . $this->prefix), '/(?P<action>\w+)/' . ltrim($this->param, '/'), array( 'methods' => \WP_REST_Server::ALLMETHODS, 'callback' => [$this, 'action'], )); }); } public function action($request) { $this->request = $request; $action_class = strtolower($this->request->get_method()) . '_' . $this->request['action']; if (method_exists($this, $action_class)) { return $this->{$action_class}(); } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件