芝麻web文件管理V1.00
编辑当前文件:/home/paymbalq/www/wp-content/plugins/w3-total-cache/Extension_FragmentCache_Environment.php
get_string( array( 'fragmentcache', 'engine' ) ) ) { if ( ! wp_next_scheduled( 'w3_fragmentcache_cleanup' ) ) { wp_schedule_event( time(), 'w3_fragmentcache_cleanup', 'w3_fragmentcache_cleanup' ); } } else { self::unschedule(); } } /** * Deactivates the fragment cache extension. * * @return void */ public static function deactivate_extension() { $config = Dispatcher::config(); $config->set_extension_active_frontend( 'fragmentcache', false ); $config->save(); self::unschedule(); } /** * Unschedules the fragment cache cleanup event if it is scheduled. * * @return void */ private static function unschedule() { if ( wp_next_scheduled( 'w3_fragmentcache_cleanup' ) ) { wp_clear_scheduled_hook( 'w3_fragmentcache_cleanup' ); } } }