Automattic\WooCommerce\Admin\PluginsProvider

PluginsProvider::set_deactivated_plugin()public staticWC 1.0

Set the deactivated plugin. This is needed because the deactivated_plugin hook happens before the option is updated which means that getting the active plugins includes the deactivated plugin.

Method of the class: PluginsProvider{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = PluginsProvider::set_deactivated_plugin( $plugin_path );
$plugin_path(string) (required)
The path to the plugin being deactivated.

PluginsProvider::set_deactivated_plugin() code WC 8.7.0

public static function set_deactivated_plugin( $plugin_path ) {
	self::$deactivated_plugin_slug = explode( '/', $plugin_path )[0];
}