Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

StoreCreation::is_disabledpublicWC 1.0

Check if task is disabled.

Method of the class: StoreCreation{}

No Hooks.

Returns

true|false.

Usage

$StoreCreation = new StoreCreation();
$StoreCreation->is_disabled();

StoreCreation::is_disabled() code WC 10.6.2

public function is_disabled() {
	return true;
}