WC_Woo_Update_Manager_Plugin::is_plugin_active()public staticWC 1.0

Check if the Woo Update Manager plugin is active.

Method of the class: WC_Woo_Update_Manager_Plugin{}

No Hooks.

Return

true|false.

Usage

$result = WC_Woo_Update_Manager_Plugin::is_plugin_active(): bool;

WC_Woo_Update_Manager_Plugin::is_plugin_active() code WC 9.7.1

public static function is_plugin_active(): bool {
	return is_plugin_active_for_network( self::WOO_UPDATE_MANAGER_PLUGIN_MAIN_FILE ) || is_plugin_active( self::WOO_UPDATE_MANAGER_PLUGIN_MAIN_FILE );
}