-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
uninstall.php
44 lines (33 loc) · 905 Bytes
/
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
<?php
/**
* Fired when the plugin is uninstalled.
*
* @package Hearthstone_Cards
* @author flowdee <support@flowdee.de>
* @link http://www.flowdee.de
* @copyright 2015 flowdee
*/
// If uninstall not called from WordPress, then exit
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
global $wpdb;
if ( is_multisite() ) {
$blogs = $wpdb->get_results( "SELECT blog_id FROM {$wpdb->blogs}", ARRAY_A );
delete_option('hcfw_active');
delete_option('hcfw_language');
delete_option('hcfw_size');
if ( $blogs ) {
foreach ( $blogs as $blog ) {
switch_to_blog( $blog['blog_id'] );
delete_option('hcfw_active');
delete_option('hcfw_language');
delete_option('hcfw_size');
restore_current_blog();
}
}
} else {
delete_option('hcfw_active');
delete_option('hcfw_language');
delete_option('hcfw_size');
}