-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuninstall.php
More file actions
132 lines (115 loc) · 3.67 KB
/
uninstall.php
File metadata and controls
132 lines (115 loc) · 3.67 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php
/**
* Handles uninstalling the plugin
*
* @package ZeroSpam
*/
// Security Note: Blocks direct access to the plugin PHP files.
defined( 'ABSPATH' ) || die();
global $wpdb;
$tables = array(
'log' => 'wpzerospam_log',
'blocked' => 'wpzerospam_blocked',
'blacklist' => 'wpzerospam_blacklist',
'api_usage' => 'wpzerospam_api_usage',
'stats_daily' => 'wpzerospam_stats_daily',
'stats_monthly' => 'wpzerospam_stats_monthly',
);
$modules = array(
'comments',
'contactform7',
'davidwalsh',
'fluentforms',
'formidable',
'givewp',
'gravityforms',
'login',
'mailchimp4wp',
'registration',
'woocommerce',
'wpforms',
'debug',
'google',
'ipinfo',
'ipstack',
'project_honeypot',
'security',
'stop_forum_spam',
'zerospam',
);
if ( is_multisite() ) {
// @codingStandardsIgnoreLine
$blogs = $wpdb->get_results( "SELECT blog_id FROM {$wpdb->blogs}", ARRAY_A );
if ( $blogs ) {
foreach ( $blogs as $blog ) {
switch_to_blog( $blog['blog_id'] );
delete_option( 'wpzerospam' );
delete_option( 'wpzerospam_honeypot' );
delete_option( 'zerospam_db_version' );
delete_option( 'zerospam_configured' );
delete_option( 'zerospam_davidwalsh' );
delete_option( 'zero_spam_last_api_report' );
delete_option( 'zero-spam-last-update' );
delete_option( 'zerospam_completed_migrations' );
delete_option( 'zerospam_show_settings_review_notice' );
foreach ( $modules as $key => $module ) {
delete_option( "zero-spam-$module" );
}
foreach ( $tables as $key => $table ) {
// @codingStandardsIgnoreLine
$wpdb->query( "DROP TABLE IF EXISTS " . $wpdb->prefix . $table );
}
// Clean up transients for this site.
$wpdb->query(
"DELETE FROM {$wpdb->options}
WHERE option_name LIKE '_transient_zerospam_%'
OR option_name LIKE '_transient_timeout_zerospam_%'"
);
}
restore_current_blog();
}
// Clean up network-wide transients and tables.
$wpdb->query(
"DELETE FROM {$wpdb->sitemeta}
WHERE meta_key LIKE '_site_transient_zerospam_%'
OR meta_key LIKE '_site_transient_timeout_zerospam_%'"
);
// Drop network-wide tables (api_usage, stats_daily, stats_monthly).
foreach ( array( 'api_usage', 'stats_daily', 'stats_monthly' ) as $table ) {
// @codingStandardsIgnoreLine
$wpdb->query( "DROP TABLE IF EXISTS " . $wpdb->base_prefix . 'wpzerospam_' . $table );
}
// Clear scheduled cron jobs.
wp_clear_scheduled_hook( 'zerospam_aggregate_daily_stats' );
wp_clear_scheduled_hook( 'zerospam_api_usage_cleanup' );
wp_clear_scheduled_hook( 'zerospam_check_api_anomalies' );
wp_clear_scheduled_hook( 'zerospam_aggregate_api_data' );
} else {
delete_option( 'wpzerospam' );
delete_option( 'wpzerospam_honeypot' );
delete_option( 'zerospam_db_version' );
delete_option( 'zerospam_configured' );
delete_option( 'zerospam_davidwalsh' );
delete_option( 'zero_spam_last_api_report' );
delete_option( 'zero-spam-last-update' );
delete_option( 'zerospam_completed_migrations' );
delete_option( 'zerospam_show_settings_review_notice' );
foreach ( $modules as $module => $settings ) {
delete_option( "zero-spam-$module" );
}
foreach ( $tables as $key => $table ) {
// @codingStandardsIgnoreLine
$wpdb->query( "DROP TABLE IF EXISTS " . $wpdb->prefix . $table );
}
// Clean up transients.
$wpdb->query(
"DELETE FROM {$wpdb->options}
WHERE option_name LIKE '_transient_zerospam_%'
OR option_name LIKE '_transient_timeout_zerospam_%'"
);
// Clear scheduled cron jobs.
wp_clear_scheduled_hook( 'zerospam_aggregate_daily_stats' );
wp_clear_scheduled_hook( 'zerospam_api_usage_cleanup' );
wp_clear_scheduled_hook( 'zerospam_check_api_anomalies' );
wp_clear_scheduled_hook( 'zerospam_aggregate_api_data' );
}