文件操作 - Frontend.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/extendify/app/Agent/Frontend.php
编辑文件内容
<?php /** * Frontend. */ namespace Extendify\Agent; defined('ABSPATH') || die('No direct access.'); /** * This class handles frontend concerns for the Agent. */ class Frontend { public function __construct() { $this->loadIntegrations(); } /** * Load the integration classes * * @return void */ protected function loadIntegrations() { foreach (glob(__DIR__ . '/Integrations/*.php') as $file) { $class = 'Extendify\\Agent\\Integrations\\' . basename($file, '.php'); if (!class_exists($class)) { continue; } new $class(); } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件