Automattic\WooCommerce\Admin\Features\OnboardingTasks

Task::can_viewpublicWC 1.0

Check if the store is capable of viewing the task.

Method of the class: Task{}

No Hooks.

Returns

bool.

Usage

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

Task::can_view() code WC 11.1.2

public function can_view() {
	return true;
}