zZzzZ.
home2
/
zrzvbdry
/
public_html
/
wp-content
/
plugins
/
wordpress-popular-posts
/
src
/
Activation
New Folder
Editing: Deactivator.php
Save
Cancel
<?php /** * Fired during plugin deactivation * * @link https://cabrerahector.com * @since 4.0.0 * * @package WordPressPopularPosts */ /** * Fired during plugin deactivation. * * This class defines all code necessary to run during the plugin's deactivation. * * @since 4.0.0 * @package WordPressPopularPosts * @author Hector Cabrera <me@cabrerahector.com> */ namespace WordPressPopularPosts\Activation; class Deactivator { /** * Fired when the plugin is deactivated. * * @since 1.0.0 * @global object wpbd * @param mixed network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog. Sometimes is NULL though. */ public static function deactivate($network_wide) /** @TODO: starting PHP 8.0 $network_wide can be declared as mixed $network_wide */ { global $wpdb; if ( function_exists('is_multisite') && is_multisite() ) { // Run deactivation for each blog in the network if ( $network_wide ) { $original_blog_id = get_current_blog_id(); $blogs_ids = $wpdb->get_col("SELECT blog_id FROM {$wpdb->blogs}"); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery,WordPress.DB.DirectDatabaseQuery.NoCaching foreach( $blogs_ids as $blog_id ) { switch_to_blog($blog_id); self::plugin_deactivate(); } // Switch back to current blog switch_to_blog($original_blog_id); return; } } self::plugin_deactivate(); } /** * On plugin deactivation, disables the shortcode and removes the scheduled task. * * @since 2.4.0 */ private static function plugin_deactivate() { remove_shortcode('wpp'); wp_clear_scheduled_hook('wpp_cache_event'); wp_clear_scheduled_hook('wpp_maybe_performance_nag'); } }