Automattic\WooCommerce\Blueprint
BuiltInExporters::get_all
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() BuiltInExporters::get all code WC 10.6.2
public function get_all() {
return array(
new ExportInstallPluginSteps(),
new ExportInstallThemeSteps(),
);
}