Automattic\WooCommerce\Admin\PluginsProvider
PluginsProvider::set_deactivated_plugin()
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() PluginsProvider::set deactivated plugin code WC 9.7.1
public static function set_deactivated_plugin( $plugin_path ) { self::$deactivated_plugin_slug = explode( '/', $plugin_path )[0]; }