tinymce-advanced
Last commit date
css
12 years ago
images
12 years ago
js
12 years ago
mce
12 years ago
readme.txt
12 years ago
screenshot-1.png
12 years ago
screenshot-2.png
12 years ago
tadv_admin.php
12 years ago
tinymce-advanced.php
12 years ago
uninstall.php
12 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 |