| 1 |
<?php |
| 2 |
/** |
| 3 |
* Fired when the plugin is uninstalled. |
| 4 |
* |
| 5 |
* @link http://xylusthemes.com |
| 6 |
* @since 1.0.0 |
| 7 |
* |
| 8 |
* @package Import_Facebook_Events |
| 9 |
*/ |
| 10 |
|
| 11 |
// If uninstall not called from WordPress, then exit. |
| 12 |
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 13 |
exit; |
| 14 |
} |
| 15 |
|
| 16 |
// Remove options |
| 17 |
delete_option( IFE_OPTIONS ); |
| 18 |
|
| 19 |
// Remove schduled Imports |
| 20 |
$scheduled_import_args = array( |
| 21 |
'post_type' => 'fb_scheduled_imports', |
| 22 |
'posts_per_page' => -1, |
| 23 |
); |
| 24 |
$scheduled_imports = get_posts( $scheduled_import_args ); |
| 25 |
if( !empty( $scheduled_imports ) ){ |
| 26 |
foreach ( $scheduled_imports as $import ) { |
| 27 |
if( $import->ID != '' ){ |
| 28 |
wp_delete_post( $import->ID, true ); |
| 29 |
} |
| 30 |
} |
| 31 |
} |
| 32 |
|