PluginProbe ʕ •ᴥ•ʔ
WP-Sweep / 1.0.7
WP-Sweep v1.0.7
2.0.1 2.0.0 1.2.0 trunk 1.0.10 1.0.11 1.0.12 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9
wp-sweep / uninstall.php
wp-sweep Last commit date
js 11 years ago admin.php 10 years ago composer.json 10 years ago index.php 11 years ago readme.txt 10 years ago uninstall.php 11 years ago wp-sweep.php 10 years ago
uninstall.php
29 lines
1 <?php
2 /*
3 * Uninstall WP-Sweep
4 */
5 if ( !defined( 'WP_UNINSTALL_PLUGIN' ) )
6 exit ();
7
8 if ( is_multisite() ) {
9 $ms_sites = wp_get_sites();
10
11 if( 0 < sizeof( $ms_sites ) ) {
12 foreach ( $ms_sites as $ms_site ) {
13 switch_to_blog( $ms_site['blog_id'] );
14 plugin_uninstalled();
15 }
16 }
17
18 restore_current_blog();
19 } else {
20 plugin_uninstalled();
21 }
22
23 /**
24 * Delete plugin table when uninstalled
25 *
26 * @access public
27 * @return void
28 */
29 function plugin_uninstalled() {}