文件操作 - class-lazy.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/i2kairpad/public_html/wp-content/plugins/wp-smushit/core/modules/class-lazy.php
编辑文件内容
<?php namespace Smush\Core\Modules; use Smush\Core\Lazy_Load\Lazy_Load_Controller; class Lazy extends Abstract_Module { protected $slug = 'lazy_load'; public function __call( $method_name, $arguments ) { $new_controller = Lazy_Load_Controller::get_instance(); if ( method_exists( $new_controller, $method_name ) ) { _deprecated_function( $method_name, '3.16.0', "\Smush\Core\Lazy_Load\Lazy_Load_Controller::$method_name" ); call_user_func_array( array( $new_controller, $method_name ), $arguments ); } else { _deprecated_function( $method_name, '3.16.0' ); } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件