-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathuninstall.php
44 lines (40 loc) · 1.52 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
<?php
/**
* Fired when the plugin is uninstalled.
*
* When populating this file, consider the following flow
* of control:
*
* - This method should be static
* - Check if the $_REQUEST content actually is the plugin name
* - Init an admin referrer check to make sure it goes through authentication
* - Verify the output of $_GET makes sense
* - Repeat with other user roles. Best directly by using the links/query string parameters.
* - Repeat things for multisite. Once for a single site in the network, once sitewide.
*
* @author Paul Kilmurray <[email protected]>
*
* @see http://www.woopos.com.au
*/
// If uninstall not called from WordPress, then exit
if ( ! \defined('WP_UNINSTALL_PLUGIN')) {
exit;
}
/* @TODO: delete all transient, options and files you may have added
* delete_transient( 'TRANSIENT_NAME' );
* delete_option('OPTION_NAME');
* //info: remove custom file directory for main site
* $upload_dir = wp_upload_dir();
* $directory = $upload_dir['basedir'] . DIRECTORY_SEPARATOR . "CUSTOM_DIRECTORY_NAME" . DIRECTORY_SEPARATOR;
* if (is_dir($directory)) {
* foreach(glob($directory.'*.*') as $v){
* unlink($v);
* }
* rmdir($directory);
* }
* //info: remove and optimize tables
* $GLOBALS['wpdb']->query("DROP TABLE `".$GLOBALS['wpdb']->prefix."TABLE_NAME`");
* $GLOBALS['wpdb']->query("OPTIMIZE TABLE `" .$GLOBALS['wpdb']->prefix."options`");
*/
// global $wpdb;
// $wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'woocommerce_pos_%'" );