Automattic\WooCommerce\Admin\Features\OnboardingTasks

Task::is_actioned()publicWC 1.0

Check if a task has been actioned.

Method of the class: Task{}

No Hooks.

Return

true|false.

Usage

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

Task::is_actioned() code WC 8.7.0

public function is_actioned() {
	return self::is_task_actioned( $this->get_id() );
}