Automattic\WooCommerce\Admin\Features\OnboardingTasks

Task::is_actionedpublicWC 1.0

Check if a task has been actioned.

Method of the class: Task{}

No Hooks.

Returns

true|false.

Usage

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

Task::is_actioned() code WC 10.6.2

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