PluginProbe
Plugins List / 2.4.4
Plugins List v2.4.4
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.4.4, at uninstall.php

21 lines 421 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 * @since 2.2.1
9 */
10
11 // If the uninstall was not called by WordPress, exit
12
13 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
14 exit(); }
15
16 // Delete cache
17
18 delete_transient( 'plugins_list' );
19
20 delete_transient( 'artiss_plugins_list' ); // Previous version - kept to ensure this is housekept on older versions
21