PluginProbe
Tableberg – Simple Gutenberg Table Block / 0.4.1
Tableberg – Simple Gutenberg Table Block v0.4.1
1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 0.5.8 All 41 releases
tableberg / includes / Deactivator.php

Deactivator.php in Tableberg – Simple Gutenberg Table Block 0.4.1, at includes/Deactivator.php

33 lines 692 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 * @package Tableberg
7 */
8
9 namespace Tableberg;
10
11 /**
12 * Fired during plugin deactivation.
13 *
14 * This class defines all code necessary to run during the plugin's deactivation.
15 *
16 * @since 1.0.2
17 * @author Imtiaz Rayhan <imtiazrayhan@gmail.com>
18 */
19 class Deactivator
20 {
21
22 public static function deactivate()
23 {
24 delete_option('tableberg_individual_control');
25 delete_option('tableberg_block_properties');
26 delete_option('tableberg_global_control');
27 delete_option('tableberg_version');
28
29 delete_transient('_welcome_redirect_tableberg');
30 delete_option('tableberg_installDate');
31 }
32 }
33