Automattic\WooCommerce\Admin\Features

Onboarding::get_allowed_industries()public staticWC 1.0

Deprecated from version 6.3.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 a list of allowed industries for the onboarding wizard.

Method of the class: Onboarding{}

No Hooks.

Return

Array.

Usage

$result = Onboarding::get_allowed_industries();

Changelog

Deprecated since 6.3.0

Onboarding::get_allowed_industries() code WC 8.7.0

public static function get_allowed_industries() {
	wc_deprecated_function( 'get_allowed_industries', '6.3', '\Automattic\WooCommerce\Internal\Admin\OnboardingIndustries::get_allowed_industries()' );
	return \Automattic\WooCommerce\Internal\Admin\Onboarding\OnboardingIndustries::get_allowed_industries();
}