PluginProbe
Block Manager / 1.2.4
Block Manager v1.2.4
trunk 1.0 1.0.1 1.1 1.2 1.2.1 1.2.2 1.2.3c 1.2.4 1.2.5 2.0.0 2.1.0 2.1.0.1 2.1.1 3.0.0 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1
block-manager / uninstall.php

uninstall.php in Block Manager 1.2.4, at uninstall.php

19 lines 346 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Uninstall Block Manager
4 *
5 * Deletes all the plugin options when plugin is unistalled.
6 *
7 * @since 1.2.2
8 * @package Gutenberg_Block_Manager
9 */
10
11 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
12 exit;
13 }
14 // Delete option: Blocks.
15 delete_option( 'gbm_disabled_blocks' );
16
17 // Delete option: Categories.
18 delete_option( 'gbm_categories' );
19