-
Notifications
You must be signed in to change notification settings - Fork 2
/
uninstall.php
executable file
·59 lines (44 loc) · 1.15 KB
/
uninstall.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* Fired when the plugin is uninstalled.
*
* @package Lock_Your_Updates
* @author Rachel Carden <[email protected]>
* @license GPL-2.0+
* @link http://wpdreamer.com
* @copyright 2014 Rachel Carden
*/
// If uninstall not called from WordPress, then exit
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
global $wpdb;
// The options this plugin uses
$lyu_options = array(
'lock_your_updates_locked_plugins',
'lock_your_updates_locked_themes',
'lock_your_updates_plugins_notes',
'lock_your_updates_themes_notes',
);
if ( is_multisite() ) {
// Delete site options
foreach( $lyu_options as $option_name ) {
delete_site_option( $option_name );
}
// Get blogs data to delete options on each site
if ( $blogs = $wpdb->get_results( "SELECT blog_id FROM {$wpdb->blogs}", ARRAY_A ) ) {
foreach ( $blogs as $blog ) {
switch_to_blog( $blog[ 'blog_id' ] );
// Delete options
foreach( $lyu_options as $option_name ) {
delete_option( $option_name );
}
restore_current_blog();
}
}
} else {
// Delete options
foreach( $lyu_options as $option_name ) {
delete_option( $option_name );
}
}