Automattic\WooCommerce\Blueprint\Steps

InstallTheme::prepare_json_arraypublicWC 1.0

Prepares an associative array for JSON encoding.

Method of the class: InstallTheme{}

No Hooks.

Returns

Array. The JSON-encoded array representing this installation step.

Usage

$InstallTheme = new InstallTheme();
$InstallTheme->prepare_json_array(): array;

InstallTheme::prepare_json_array() code WC 9.9.5

public function prepare_json_array(): array {
	return array(
		'step'      => static::get_step_name(),
		'themeData' => array(
			'resource' => $this->resource,
			'slug'     => $this->slug,
		),
		'options'   => $this->options,
	);
}