Automattic\WooCommerce\Blueprint

BuiltInExporters::get_allpublicWC 1.0

Get all built-in exporters.

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

Хуков нет.

Возвращает

Массив. List of all built-in exporters.

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

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

Код BuiltInExporters::get_all() WC 10.0.2

public function get_all() {
	return array(
		new ExportInstallPluginSteps(),
		new ExportInstallThemeSteps(),
	);
}