PluginProbe
Powerkit – Supercharge your WordPress Site / 2.3.5
Powerkit – Supercharge your WordPress Site v2.3.5
3.1.1 3.1.0 3.0.9 3.0.8 trunk 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 All 87 releases
powerkit / uninstall.php

uninstall.php in Powerkit – Supercharge your WordPress Site 2.3.5, at uninstall.php

25 lines 728 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Fired when the plugin is uninstalled.
4 *
5 * When populating this file, consider the following flow
6 * of control:
7 *
8 * - This method should be static
9 * - Check if the $_REQUEST content actually is the plugin name
10 * - Run an admin referrer check to make sure it goes through authentication
11 * - Verify the output of $_GET makes sense
12 * - Repeat with other user roles. Best directly by using the links/query string parameters.
13 * - Repeat things for multisite. Once for a single site in the network, once sitewide.
14 *
15 * @link http://xspirestudio.com
16 * @since 1.0.0
17 *
18 * @package Gkit
19 */
20
21 // If uninstall not called from WordPress, then exit.
22 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
23 exit;
24 }
25