文件操作 - PrefetchProcess.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/popup-maker/classes/Interface/Batch/PrefetchProcess.php
编辑文件内容
<?php /** * Interface for Batch PrefetchProcess * * @package PopupMaker * @copyright Copyright (c) 2024, Code Atlantic LLC */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Second-level interface for registering a batch process that leverages * pre-fetch and data storage. * * @since 1.7.0 */ interface PUM_Interface_Batch_PrefetchProcess extends PUM_Interface_Batch_Process { /** * Initializes the batch process. * * This is the point where any relevant data should be initialized for use by the processor methods. * * @param null|mixed $data * * @return void */ public function init( $data = null ); /** * Pre-fetches data to speed up processing. */ public function pre_fetch(); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件