-
Notifications
You must be signed in to change notification settings - Fork 4
/
uninstall.php
49 lines (45 loc) · 1.22 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
45
46
47
48
49
<?php
/**
* Fired when the plugin is uninstalled.
*
* @link http://xylusthemes.com
* @since 1.0.0
*
* @package WP_Event_Aggregator
*/
// If uninstall not called from WordPress, then exit.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
$wpea_options = get_option( 'wpea_options' );
$delete_wpdata = isset( $wpea_options['wpea']['delete_wpdata'] ) ? $wpea_options['wpea']['delete_wpdata'] : 'no';
if( $delete_wpdata == 'yes' ){
// Remove options
delete_option( 'wpea_options' );
// Remove schduled Imports
$scheduled_import_args = array(
'post_type' => 'xt_scheduled_imports',
'posts_per_page' => -1,
);
$scheduled_imports = get_posts( $scheduled_import_args );
if( !empty( $scheduled_imports ) ){
foreach ( $scheduled_imports as $import ) {
if( $import->ID != '' ){
wp_delete_post( $import->ID, true );
}
}
}
// Remove Import History
$import_history_args = array(
'post_type' => 'wpea_import_history',
'posts_per_page' => -1,
);
$import_histories = get_posts( $import_history_args );
if( !empty( $import_histories ) ){
foreach ( $import_histories as $import_history ) {
if( $import_history->ID != '' ){
wp_delete_post( $import_history->ID, true );
}
}
}
}