PluginProbe
CBX Map for Google Map & OpenStreetMap / 2.0.3
CBX Map for Google Map & OpenStreetMap v2.0.3
trunk 1.1.10 1.1.11 1.1.12 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5
cbxgooglemap / uninstall.php

uninstall.php in CBX Map for Google Map & OpenStreetMap 2.0.3, at uninstall.php

47 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Fired when the plugin is uninstalled.
5 *
6 * When populating this file, consider the following flow
7 * of control:
8 *
9 * - This method should be static
10 * - Check if the $_REQUEST content actually is the plugin name
11 * - Run an admin referrer check to make sure it goes through authentication
12 * - Verify the output of $_GET makes sense
13 * - Repeat with other user roles. Best directly by using the links/query string parameters.
14 * - Repeat things for multisite. Once for a single site in the network, once sitewide.
15 *
16 * This file may be updated more in future version of the Boilerplate; however, this is the
17 * general skeleton and outline for how the file should work.
18 *
19 * For more information, see the following discussion:
20 * https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913
21 *
22 * @link https://codeboxr.com
23 * @since 1.0.0
24 *
25 * @package Cbxgooglemap
26 */
27
28 // If uninstall not called from WordPress, then exit.
29 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
30 exit;
31 }
32
33 require_once plugin_dir_path( __FILE__ ) . "vendor/autoload.php";
34
35 /**
36 * The code that runs during plugin uninstall.
37 */
38 function cbxgooglemap_uninstall() {
39 require_once plugin_dir_path( __FILE__ ) . 'includes/CBXGoogleMapUninstall.php';
40
41 CBXGoogleMapUninstall::uninstall();
42 }//end function cbxgooglemap_uninstall
43
44 if ( ! defined( 'CBXGOOGLEMAP_PLUGIN_NAME' ) ) {
45 cbxgooglemap_uninstall();
46 }
47