Automattic\WooCommerce\Admin

PluginsHelper::is_plugin_active()public staticWC 1.0

Checks if a plugin is active.

Method of the class: PluginsHelper{}

No Hooks.

Return

true|false.

Usage

$result = PluginsHelper::is_plugin_active( $plugin );
$plugin(string) (required)
Path to the plugin file relative to the plugins directory or the plugin directory name.

PluginsHelper::is_plugin_active() code WC 8.7.0

public static function is_plugin_active( $plugin ) {
	$plugin_path = self::get_plugin_path_from_slug( $plugin );

	return $plugin_path ? in_array( $plugin_path, get_option( 'active_plugins', array() ), true ) : false;
}