| Server IP : 80.65.96.118 / Your IP : 216.73.216.172 Web Server : Apache System : Linux vserver08.previder.nl 5.14.0-687.26.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jul 14 16:32:02 EDT 2026 x86_64 User : prinse0000 ( 10013) PHP Version : 8.3.32 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/cso-deprinsenhof.nl/httpdocs/wp-content/plugins/wp-sweep/ |
Upload File : |
<?php
/**
* WP-Sweep uninstall.php
*
* @package wp-sweep
*/
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
if ( is_multisite() ) {
$ms_sites = get_sites();
if ( 0 < count( $ms_sites ) ) {
foreach ( $ms_sites as $ms_site ) {
switch_to_blog( $ms_site->blog_id );
plugin_uninstalled();
}
}
restore_current_blog();
} else {
plugin_uninstalled();
}
/**
* Delete plugin table when uninstalled
*
* @access public
* @return void
*/
function plugin_uninstalled() {
}