| 1 |
<?php |
| 2 |
/** |
| 3 |
* Uninstall plugin. |
| 4 |
* |
| 5 |
* @package ultimate-markdown |
| 6 |
*/ |
| 7 |
|
| 8 |
// Exit if this file is called outside WordPress. |
| 9 |
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 10 |
die(); |
| 11 |
} |
| 12 |
|
| 13 |
require_once plugin_dir_path( __FILE__ ) . 'shared/class-daextulma-shared.php'; |
| 14 |
require_once plugin_dir_path( __FILE__ ) . 'admin/class-daextulma-admin.php'; |
| 15 |
|
| 16 |
// Delete options and tables. |
| 17 |
Daextulma_Admin::un_delete(); |
| 18 |
|