Automattic\WooCommerce\Admin\Features\OnboardingTasks

Task::get_level()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.

Level.

Method of the class: Task{}

No Hooks.

Return

String.

Usage

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

Changelog

Deprecated since 7.2.0

Task::get_level() code WC 8.7.0

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

	return 3;
}