Automattic\WooCommerce\Admin\Features\OnboardingTasks

Task::can_view()publicWC 1.0

Check if the store is capable of viewing the task.

Method of the class: Task{}

No Hooks.

Return

true|false.

Usage

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

Task::can_view() code WC 8.6.1

public function can_view() {
	return true;
}