文件操作 - AbstractAjaxService.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/duplicator/src/Ajax/AbstractAjaxService.php
编辑文件内容
<?php /** * @package Duplicator * @copyright (c) 2022, Snap Creek LLC */ namespace Duplicator\Ajax; abstract class AbstractAjaxService { /** * Init ajax calls * * @return void */ abstract public function init(); /** * Add ajax action * * @param string $tag ajax tag name * @param string $methodName method name * * @return bool Always returns true */ protected function addAjaxCall($tag, $methodName) { return add_action($tag, array($this, $methodName)); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件