PluginProbe
SQLite Object Cache / 1.3.8
SQLite Object Cache v1.3.8
1.6.5 trunk 0.1.7 1.0.0 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.4.0 1.4.1 1.5.1 1.5.4 1.5.5 1.5.6 1.5.7 All 30 releases
sqlite-object-cache / uninstall.php

uninstall.php in SQLite Object Cache 1.3.8, at uninstall.php

15 lines 320 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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
13 delete_option( 'sqlite_object_cache_settings' );
14 delete_option( 'sqlite_object_cache_version' );
15