Automattic\WooCommerce\Blueprint

BuiltInExporters::get_allpublicWC 1.0

Get all built-in exporters.

Method of the class: BuiltInExporters{}

No Hooks.

Returns

Array. List of all built-in exporters.

Usage

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

BuiltInExporters::get_all() code WC 9.9.5

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