forked from Automattic/WP-Job-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall.php
36 lines (28 loc) · 953 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
<?php
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit();
}
// Cleanup all data.
require 'includes/class-wp-job-manager-data-cleaner.php';
if ( ! is_multisite() ) {
// Only do deletion if the setting is true.
$do_deletion = get_option( 'job_manager_delete_data_on_uninstall' );
if ( $do_deletion ) {
WP_Job_Manager_Data_Cleaner::cleanup_all();
}
} else {
global $wpdb;
$blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
$original_blog_id = get_current_blog_id();
foreach ( $blog_ids as $blog_id ) {
switch_to_blog( $blog_id );
// Only do deletion if the setting is true.
$do_deletion = get_option( 'job_manager_delete_data_on_uninstall' );
if ( $do_deletion ) {
WP_Job_Manager_Data_Cleaner::cleanup_all();
}
}
switch_to_blog( $original_blog_id );
}
require dirname( __FILE__ ) . '/includes/class-wp-job-manager-usage-tracking.php';
WP_Job_Manager_Usage_Tracking::get_instance()->clear_options();