Automattic\WooCommerce\Admin\Features\OnboardingTasks

Task::is_disabledpublicWC 1.0

Deprecated since 7.2.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

Check if task is disabled.

Method of the class: Task{}

No Hooks.

Returns

bool.

Usage

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

Changelog

Deprecated since 7.2.0

Task::is_disabled() code WC 11.1.2

public function is_disabled() {
	wc_deprecated_function( __CLASS__ . '::' . __FUNCTION__, '7.2.0' );

	return false;
}