Automattic\WooCommerce\Blueprint\Exporters

ExportInstallPluginSteps::include_private_pluginspublicWC 1.0

Set whether to include private plugins in the export.

Method of the class: ExportInstallPluginSteps{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ExportInstallPluginSteps = new ExportInstallPluginSteps();
$ExportInstallPluginSteps->include_private_plugins( $boolean );
$boolean(true|false) (required)
Whether to include private plugins.

ExportInstallPluginSteps::include_private_plugins() code WC 9.9.5

public function include_private_plugins( bool $boolean ) {
	$this->include_private_plugins = $boolean;
}