文件操作 - Controller.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/the-events-calendar/src/Events/REST/TEC/V1/Controller.php
编辑文件内容
<?php /** * Controller for the Events V1 REST API. * * @since 6.15.0 * * @package TEC\Events\REST\TEC\V1 */ declare( strict_types=1 ); namespace TEC\Events\REST\TEC\V1; use TEC\Common\Contracts\Provider\Controller as Controller_Contract; /** * Controller for the Events V1 REST API. * * @since 6.15.0 * * @package TEC\Events\REST\TEC\V1 */ class Controller extends Controller_Contract { /** * Registers the filters and actions hooks added by the controller. * * @since 6.15.0 * * @return void */ protected function do_register(): void { $this->container->register( Endpoints::class ); } /** * Unregisters the filters and actions hooks added by the controller. * * @since 6.15.0 * * @return void */ public function unregister(): void { $this->container->get( Endpoints::class )->unregister(); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件