PluginProbe
Plugins List / 2.5.2
Plugins List v2.5.2
trunk 0.2.1 0.2.2 1.0 2.0 2.1 2.2.7 2.3.2 2.4.4 2.5.2 2.6 2.6.1 2.7
plugins-list / uninstall.php

uninstall.php in Plugins List 2.5.2, at uninstall.php

20 lines 412 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Uninstaller
4 *
5 * Uninstall the plugin by removing any options from the database
6 *
7 * @package plugins-list
8 */
9
10 // If the uninstall was not called by WordPress, exit.
11
12 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
13 exit(); }
14
15 // Delete cache.
16
17 delete_transient( 'plugins_list' );
18
19 delete_transient( 'artiss_plugins_list' ); // Previous version - kept to ensure this is housekept on older versions.
20