PluginProbe
CBX Map for Google Map & OpenStreetMap / 1.1.11
CBX Map for Google Map & OpenStreetMap v1.1.11
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 / includes / class-cbxgooglemap-deactivator.php

class-cbxgooglemap-deactivator.php in CBX Map for Google Map & OpenStreetMap 1.1.11, at includes/class-cbxgooglemap-deactivator.php

37 lines 753 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Fired during plugin deactivation
5 *
6 * @link https://codeboxr.com
7 * @since 1.0.0
8 *
9 * @package CBXGoogleMap
10 * @subpackage CBXGoogleMap/includes
11 */
12
13 /**
14 * Fired during plugin deactivation.
15 *
16 * This class defines all code necessary to run during the plugin's deactivation.
17 *
18 * @since 1.0.0
19 * @package CBXGoogleMap
20 * @subpackage CBXGoogleMap/includes
21 * @author Codeboxr <info@codeboxr.com>
22 */
23 class CBXGoogleMap_Deactivator {
24
25 /**
26 * Short Description. (use period)
27 *
28 * Long Description.
29 *
30 * @since 1.0.0
31 */
32 public static function deactivate() {
33 delete_option('cbxgooglemap_flush_rewrite_rules');
34 }//end deactivate
35
36 }//end CBXGoogleMap_Deactivator
37