PluginProbe ʕ •ᴥ•ʔ
Advanced Editor Tools / 4.6.7
Advanced Editor Tools v4.6.7
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
css 9 years ago js 9 years ago langs 9 years ago mce 8 years ago readme.txt 8 years ago screenshot-1.png 9 years ago screenshot-2.png 9 years ago screenshot-3.png 9 years ago screenshot-4.png 9 years ago screenshot-5.png 9 years ago tadv_admin.php 9 years ago tinymce-advanced.php 8 years ago uninstall.php 10 years ago
uninstall.php
22 lines
1 <?php
2
3 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) || ! WP_UNINSTALL_PLUGIN ||
4 dirname( WP_UNINSTALL_PLUGIN ) != dirname( plugin_basename( __FILE__ ) ) ) {
5
6 exit;
7 }
8
9 delete_option( 'tadv_settings' );
10 delete_option( 'tadv_admin_settings' );
11 delete_option( 'tadv_version' );
12
13 // Delete old options
14 delete_option('tadv_options');
15 delete_option('tadv_toolbars');
16 delete_option('tadv_plugins');
17 delete_option('tadv_btns1');
18 delete_option('tadv_btns2');
19 delete_option('tadv_btns3');
20 delete_option('tadv_btns4');
21 delete_option('tadv_allbtns');
22