Automattic\WooCommerce\Admin\Features\Blueprint
Init::add_woo_exporters
Add Woo Specific Exporters.
Method of the class: Init{}
No Hooks.
Returns
StepExporter[].
Usage
$Init = new Init(); $Init->add_woo_exporters( $exporters );
- $exporters(StepExporter[]) (required)
- Array of step exporters.
Init::add_woo_exporters() Init::add woo exporters code WC 10.5.0
public function add_woo_exporters( array $exporters ) {
return array_merge(
$exporters,
$this->get_woo_exporters()
);
}