Automattic\WooCommerce\Admin\Features\OnboardingTasks

Task::get_parent_options()publicWC 1.0

Get task list options.

Method of the class: Task{}

No Hooks.

Return

Array.

Usage

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

Task::get_parent_options() code WC 8.7.0

public function get_parent_options() {
	if ( ! $this->task_list ) {
		return array();
	}
	return $this->task_list->options;
}