Automattic\WooCommerce\Admin\Features\OnboardingTasks

Task::is_snoozeable()publicWC 1.0

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

Check if a task is snoozeable.

Method of the class: Task{}

No Hooks.

Return

true|false.

Usage

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

Changelog

Deprecated since 7.2.0

Task::is_snoozeable() code WC 8.7.0

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

	return false;
}