Automattic\WooCommerce\Blueprint

BuiltInStepProcessors::get_allpublicWC 1.0

Returns an array of all step processors.

Метод класса: BuiltInStepProcessors{}

Хуков нет.

Возвращает

Массив. The array of step processors.

Использование

$BuiltInStepProcessors = new BuiltInStepProcessors();
$BuiltInStepProcessors->get_all();

Код BuiltInStepProcessors::get_all() WC 10.8.1

public function get_all() {
	return array(
		$this->create_install_plugins_processor(),
		$this->create_install_themes_processor(),
		new ImportSetSiteOptions(),
		new ImportActivatePlugin(),
		new ImportActivateTheme(),
		new ImportRunSql(),
	);
}