Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/www/wp-content/plugins/the7-cli/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/www/wp-content/plugins/the7-cli/the7-cli.php
<?php
/**
 * Plugin Name: The7 CLI
 * Description: This plugin contains wp-cli commands specific to The7 theme.
 * Version:     1.0.0
 * Author:      Dream-Theme
 * Author URI:  https://dream-theme.com/
 */

use The7CLI\Commands\The7\Cache;
use The7CLI\Commands\The7\DB;
use The7CLI\Commands\The7\Images;
use The7CLI\Commands\The7\Option;
use The7CLI\Commands\The7\PostMeta;
use The7CLI\Commands\The7Core\DB as CoreDB;

defined( 'ABSPATH' ) || exit;

if ( defined( 'WP_CLI' ) ) {
	require __DIR__ . '/vendor/autoload.php';

	WP_CLI::add_command( DB::COMMAND, DB::class );
	WP_CLI::add_command( Option::COMMAND, Option::class );
	WP_CLI::add_command( Cache::COMMAND, Cache::class );

	if ( defined( 'THE7_CLI_ENABLE_BETA_FEATURES' ) ) {
		WP_CLI::add_command( CoreDB::COMMAND, CoreDB::class );
		WP_CLI::add_command( PostMeta::COMMAND, PostMeta::class );
		WP_CLI::add_command( Images::COMMAND, Images::class );
	}
}

Spamworldpro Mini