# sqlite-object-cache/1.3.0/uninstall.php

SQLite Object Cache, version 1.3.0. 15 lines.

- Page: https://pluginprobe.com/plugins/sqlite-object-cache/1.3.0/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/sqlite-object-cache/1.3.0/raw/uninstall.php
- Modified: 2022-12-06T22:46:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sqlite-object-cache/1.3.0/code/uninstall.php#L10-L20`.

```php
<?php
/**
 * This file runs when the plugin in uninstalled (deleted).
 *
 * @package SQLite Object Cache.
 */

// If plugin is not being uninstalled, exit (do nothing).
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	exit;
}

delete_option( 'sqlite_object_cache_settings' );
delete_option( 'sqlite_object_cache_version' );

```
