WC_Helper_Compat::deactivate_plugin
Attempt to deactivate the legacy helper plugin.
Method of the class: WC_Helper_Compat{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = WC_Helper_Compat::deactivate_plugin();
WC_Helper_Compat::deactivate_plugin() WC Helper Compat::deactivate plugin code WC 10.8.1
public static function deactivate_plugin() {
include_once ABSPATH . 'wp-admin/includes/plugin.php';
if ( ! function_exists( 'deactivate_plugins' ) ) {
return;
}
if ( is_plugin_active( 'woothemes-updater/woothemes-updater.php' ) ) {
deactivate_plugins( 'woothemes-updater/woothemes-updater.php' );
// Notify the user when the plugin is deactivated.
add_action( 'pre_current_active_plugins', array( __CLASS__, 'plugin_deactivation_notice' ) );
}
}