-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathuninstall.php
50 lines (45 loc) · 1.25 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
50
<?php
/**
* Fired when the plugin is uninstalled.
*
* @link http://xylusthemes.com
* @since 1.0.0
*
* @package Import_Eventbrite_Events
*/
// If uninstall not called from WordPress, then exit.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
$iee_options = get_option( 'xtei_eventbrite_options' );
$delete_ieedata = isset( $iee_options['delete_ieedata'] ) ? $iee_options['delete_ieedata'] : 'no';
if ( $delete_ieedata == 'yes' ) {
// Remove options
delete_option( 'xtei_eventbrite_options' );
// Remove schduled Imports
$scheduled_import_args = array(
'post_type' => 'iee_scheduled_import',
'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' => 'iee_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 );
}
}
}
}