Automattic\WooCommerce\Utilities

PluginUtil::get_plugins_excluded_from_compatibility_uipublicWC 1.0

Get the names of the plugins that are excluded from the feature compatibility UI.

Core no longer excludes any plugins from the compatibility UI, so this method always returns an empty array. Retained as a stable public API for backwards compatibility with any external callers.

Method of the class: PluginUtil{}

No Hooks.

Returns

String[]. Always an empty array.

Usage

$PluginUtil = new PluginUtil();
$PluginUtil->get_plugins_excluded_from_compatibility_ui();

PluginUtil::get_plugins_excluded_from_compatibility_ui() code WC 10.9.4

public function get_plugins_excluded_from_compatibility_ui() {
	return array();
}