forked from mikejolley/woocommerce-product-gift-wrap
-
Notifications
You must be signed in to change notification settings - Fork 3
/
uninstall.php
39 lines (31 loc) · 1.01 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
<?php
/**
* If uninstall is not called from WordPress, 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( 'product_gift_wrap_enabled' );
delete_option( 'product_gift_wrap_cost' );
delete_option( 'product_gift_wrap_message' );
if ( $blogs ) {
foreach ( $blogs as $blog ) {
switch_to_blog( $blog['blog_id'] );
delete_option( 'product_gift_wrap_enabled' );
delete_option( 'product_gift_wrap_cost' );
delete_option( 'product_gift_wrap_message' );
// info: optimize table.
$GLOBALS['wpdb']->query( 'OPTIMIZE TABLE `' . $GLOBALS['wpdb']->prefix . 'options`' );
restore_current_blog();
}
}
} else {
delete_option( 'product_gift_wrap_enabled' );
delete_option( 'product_gift_wrap_cost' );
delete_option( 'product_gift_wrap_message' );
// info: optimize table.
$GLOBALS['wpdb']->query( 'OPTIMIZE TABLE `' . $GLOBALS['wpdb']->prefix . 'options`' );
}