-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
uninstall.php
32 lines (27 loc) · 1.07 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
<?php
/**
* Uninstall Woo Store Vacation.
* Fired when the plugin is uninstalled.
*
* @since 1.0.0
*
* @package woo-store-vacation
*/
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
defined( 'WP_UNINSTALL_PLUGIN' ) || exit; // If uninstall not called from WordPress, then exit.
// Delete the onboarding (welcome) notice preference.
delete_site_option( 'woo_store_vacation_onboarding' );
// Delete the already rated preference.
delete_option( 'woo_store_vacation_rated' );
// Reset the activation timestamp as the user already decided to delete the plugin.
delete_site_option( 'woo_store_vacation_activation_timestamp' );
/*
* Only perform uninstall if WC_REMOVE_ALL_DATA constant is set to true in user's
* wp-config.php. This is to prevent data loss when deleting the plugin from the backend
* and to ensure only the site owner can perform this action.
*/
if ( defined( 'WC_REMOVE_ALL_DATA' ) && true === WC_REMOVE_ALL_DATA ) {
delete_option( 'woo_store_vacation_options' );
// For site options in Multisite.
delete_site_option( 'woo_store_vacation_options' );
}