PluginProbe ʕ •ᴥ•ʔ
Orbit Fox: Duplicate Page, Menu Icons, SVG Support, Cookie Notice, Custom Fonts & More / 3.0.5
Orbit Fox: Duplicate Page, Menu Icons, SVG Support, Cookie Notice, Custom Fonts & More v3.0.5
3.0.7 3.0.6 2.8.11 2.8.12 2.8.13 2.8.14 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.9.0 2.9.1 2.9.10 2.9.11 2.9.12 2.9.13 2.9.14 2.9.15 2.9.16 2.9.17 2.9.18 2.9.19 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7 2.9.8 2.9.9 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 2.0.0 2.0.1 2.0.10 2.0.11 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.10.0 2.10.1 2.10.10 2.10.11 2.10.12 2.10.13 2.10.14 2.10.15 2.10.16 2.10.17 2.10.18 2.10.19 2.10.2 2.10.20 2.10.21 2.10.22 2.10.23 2.10.24 2.10.25 2.10.26 2.10.27 2.10.28 2.10.29 2.10.3 2.10.30 2.10.31 2.10.32 2.10.33 2.10.34 2.10.35 2.10.36 2.10.37 2.10.38 2.10.39 2.10.40 2.10.41 2.10.42 2.10.43 2.10.44 2.10.45 2.10.46 2.10.47 2.10.5 2.10.6 2.10.7 2.10.8 2.10.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.5.8 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.8.0 2.8.1 2.8.10
themeisle-companion / uninstall.php
themeisle-companion Last commit date
core 6 months ago dashboard 10 months ago images 8 years ago languages 6 months ago obfx_modules 6 months ago vendor 6 months ago CHANGELOG.md 6 months ago CONTRIBUTING.md 2 years ago LICENSE.txt 8 years ago class-autoloader.php 6 years ago eslint.config.js 10 months ago index.php 8 years ago readme.md 6 months ago readme.txt 6 months ago themeisle-companion.php 6 months ago uninstall.php 8 years ago wp-scripts.config.js 10 months ago yarn.lock 10 months ago
uninstall.php
31 lines
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 * This file may be updated more in future version of the Boilerplate; however, this is the
16 * general skeleton and outline for how the file should work.
17 *
18 * For more information, see the following discussion:
19 * https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913
20 *
21 * @link https://themeisle.com
22 * @since 1.0.0
23 *
24 * @package Orbit_Fox
25 */
26
27 // If uninstall not called from WordPress, then exit.
28 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
29 exit;
30 }
31