<?php /* * SPEEDYCACHE * https://speedycache.com/ * (c) SpeedyCache Team */ if(!defined('ABSPATH')){ exit; } if(!defined('WP_CLI')){ return; } class speedycache_cli extends \WP_CLI_Command{ /** * Purges/Cleares cache or minified files * ## OPTIONS * <type> * : Purges cache or minified * --- * options: * - cache * - and minified * * ## EXAMPLES * # Purge Cache * $ wp speedycache purge cache * * # Purge cache and minfied * $ wp speedycache purge cache and minified */ public function purge($args, $args_assoc){ global $speedycache; if(!isset($speedycache)){ WP_CLI::error('speedycache has not been defined!'); } if(!function_exists('speedycache_delete_cache')){ WP_CLI::error('speedycache_delete_cache() does not exist!'); } if(empty($args[0]) || $args[0] !== 'cache'){ self::wrong_usage(); } if(empty($args[1]) || empty($args[2])){ $this->delete_cache(); return; } if($args[1] == 'and' && $args[2] == 'minified'){ $this->delete_cache(true); return; } self::wrong_usage(); } private function delete_cache($minified_too = false){ if(function_exists('speedycache_delete_cache')){ WP_CLI::error('Somethinng Went Wrong: Unable to delete cache'); } WP_CLI::line('Clearing the ALL cache...'); if(defined('SPEEDYCACHE_VERSION') && version_compare(SPEEDYCACHE_VERSION, '1.2.0', '>=')){ $delete['minified'] = $minified_too; \SpeedyCache\Delete::run($delete); } else { speedycache_delete_cache($minified_too); } WP_CLI::success('The cache has been cleared!'); } } WP_CLI::add_command('speedycache', 'speedycache_cli');
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
admin.php | File | 7.37 KB | 0644 |
|
bloat.php | File | 10.14 KB | 0644 |
|
cli.php | File | 1.63 KB | 0644 |
|
commoncss.php | File | 3.61 KB | 0644 |
|
criticalcss.php | File | 9.25 KB | 0644 |
|
db.php | File | 1.99 KB | 0644 |
|
enhanced.php | File | 45.29 KB | 0644 |
|
googlefonts.php | File | 5.57 KB | 0644 |
|
image.php | File | 70.58 KB | 0644 |
|
index.html | File | 91 B | 0644 |
|
lazyload.php | File | 14.7 KB | 0644 |
|
license.php | File | 4.04 KB | 0644 |
|
logs.php | File | 7.42 KB | 0644 |
|
metaboxpro.php | File | 1.97 KB | 0644 |
|
mobile.php | File | 1.57 KB | 0644 |
|
object-cache-lib.php | File | 10.86 KB | 0644 |
|
objectcache.php | File | 7.95 KB | 0644 |
|
plugin-update-checker.php | File | 52.86 KB | 0644 |
|
premium.php | File | 390 B | 0644 |
|
prooptimizations.php | File | 2.1 KB | 0644 |
|
renderblocking.php | File | 36.64 KB | 0644 |
|
settingspage.php | File | 33.3 KB | 0644 |
|
statistics.php | File | 4.28 KB | 0644 |
|
unusedcss.php | File | 7.45 KB | 0644 |
|
youtube.html | File | 2.29 KB | 0644 |
|