!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/var/softaculous/sitepad/editor/site-data/plugins/speedycache-pro/main/   drwxr-xr-x
Free 290.48 GB of 429.69 GB (67.6%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     cli.php (1.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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');

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0957 ]--