Automattic\WooCommerce\Admin\Features\OnboardingTasks

TaskList::get_sections()publicWC 1.0

Deprecated from version 7.2.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Get task list sections.

Method of the class: TaskList{}

No Hooks.

Return

Array.

Usage

$TaskList = new TaskList();
$TaskList->get_sections();

Changelog

Deprecated since 7.2.0

TaskList::get_sections() code WC 8.6.1

public function get_sections() {
	wc_deprecated_function( __CLASS__ . '::' . __FUNCTION__, '7.2.0' );

	return $this->sections;
}