__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Automattic\WooCommerce\Blueprint\Steps;
/**
* Class ActivateTheme
*
* @package Automattic\WooCommerce\Blueprint\Steps
*/
class ActivateTheme extends Step {
/**
* The name of the theme to be activated.
*
* @var string The name of the theme to be activated.
*/
private string $theme_folder_name;
/**
* ActivateTheme constructor.
*
* @param string $theme_folder_name The name of the theme to be activated.
*/
public function __construct( $theme_folder_name ) {
$this->theme_folder_name = $theme_folder_name;
}
/**
* Returns the name of this step.
*
* @return string The step name.
*/
public static function get_step_name(): string {
return 'activateTheme';
}
/**
* 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() ),
),
'themeFolderName' => array(
'type' => 'string',
),
),
'required' => array( 'step', 'themeFolderName' ),
);
}
/**
* Prepares an associative array for JSON encoding.
*
* @return array Array of data to be encoded as JSON.
*/
public function prepare_json_array(): array {
return array(
'step' => static::get_step_name(),
'themeFolderName' => $this->theme_folder_name,
);
}
}
| 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 |
|