Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Marketing::has_installed_extensionspublic staticWC 1.0

Deprecated since 9.3.0 Removed to improve performance.. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

Check if the store has installed marketing extensions.

Method of the class: Marketing{}

No Hooks.

Returns

true|false.

Usage

$result = Marketing::has_installed_extensions();

Changelog

Deprecated since 9.3.0 Removed to improve performance.

Marketing::has_installed_extensions() code WC 10.5.0

public static function has_installed_extensions() {
	wc_deprecated_function(
		__METHOD__,
		'9.3.0'
	);
	return false;
}