| 1 |
<?php |
| 2 |
/** |
| 3 |
* This file runs when the plugin in uninstalled (deleted). |
| 4 |
* |
| 5 |
* @package SQLite Object Cache. |
| 6 |
*/ |
| 7 |
|
| 8 |
// If plugin is not being uninstalled, exit (do nothing). |
| 9 |
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 10 |
exit; |
| 11 |
} |
| 12 |
if ( is_multisite() ) { |
| 13 |
foreach ( get_sites( array( 'number' => 0, 'fields' => 'ids', 'no_found_rows' => true, 'orderby' => false ) ) as $sqlite_object_cache_site_id ) { |
| 14 |
try { |
| 15 |
switch_to_blog( $sqlite_object_cache_site_id ); |
| 16 |
delete_option( 'sqlite_object_cache_settings' ); |
| 17 |
delete_option( 'sqlite_object_cache_version' ); |
| 18 |
} catch ( Exception $ex ) { |
| 19 |
/* Empty, intentionally. Avoid crashes on asset clearing. */ |
| 20 |
} finally { |
| 21 |
restore_current_blog(); |
| 22 |
} |
| 23 |
} |
| 24 |
} |
| 25 |
unset ( $sqlite_object_cache_site_id ); |
| 26 |
|