PluginProbe
Block Manager / trunk
Block Manager vtrunk
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 trunk, at uninstall.php

21 lines 414 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 * Deletes all the plugin options when plugin is unistalled.
5 *
6 * @since 1.2.2
7 * @package Gutenberg_Block_Manager
8 */
9
10 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
11 exit;
12 }
13 // Delete option: Blocks.
14 delete_option( 'gbm_disabled_blocks' );
15
16 // Delete option: Categories.
17 delete_option( 'gbm_categories' );
18
19 // Delete option: Patterns.
20 delete_option( 'gbm_disabled_patterns' );
21