PluginProbe ʕ •ᴥ•ʔ
Advanced Editor Tools / 5.6.0
Advanced Editor Tools v5.6.0
trunk 1.0 1.0.1 2.0 2.2 3.0 3.0.1 3.1 3.2 3.2.4 3.2.7 3.3.9 3.3.9.1 3.3.9.2 3.4.2 3.4.2.1 3.4.5 3.4.5.1 3.4.9 3.5.8 3.5.9 3.5.9.1 4.0 4.0.1 4.0.2 4.1 4.1.1 4.1.7 4.1.9 4.2.3 4.2.3.1 4.2.5 4.2.8 4.3.10 4.3.10.1 4.3.8 4.4.1 4.4.3 4.5.6 4.6.3 4.6.7 4.7.11 4.8.0 4.8.1 4.8.2 5.0.0 5.0.1 5.1.0 5.2 5.2.1 5.3 5.4.0 5.5.0 5.5.1 5.6.0 5.9.0 5.9.1 5.9.2
tinymce-advanced / uninstall.php
tinymce-advanced Last commit date
block-editor 5 years ago mce 5 years ago plugin-assets 5 years ago readme.txt 5 years ago tadv_admin.php 5 years ago tinymce-advanced.php 5 years ago uninstall.php 5 years ago
uninstall.php
29 lines
1 <?php
2 /**
3 * Clean-up on uninstalling.
4 * @package advanced-editor-tools
5 */
6
7 if (
8 ! defined( 'WP_UNINSTALL_PLUGIN' ) ||
9 ! WP_UNINSTALL_PLUGIN ||
10 dirname( WP_UNINSTALL_PLUGIN ) !== dirname( plugin_basename( __FILE__ ) )
11 ) {
12
13 exit;
14 }
15
16 delete_option( 'tadv_settings' );
17 delete_option( 'tadv_admin_settings' );
18 delete_option( 'tadv_version' );
19
20 // Delete old options
21 delete_option('tadv_options');
22 delete_option('tadv_toolbars');
23 delete_option('tadv_plugins');
24 delete_option('tadv_btns1');
25 delete_option('tadv_btns2');
26 delete_option('tadv_btns3');
27 delete_option('tadv_btns4');
28 delete_option('tadv_allbtns');
29