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 |