| 1 |
<?php |
| 2 |
/** |
| 3 |
* Sellkit Uninstall |
| 4 |
* |
| 5 |
* Uninstalling Sellkit deletes tables, and options. |
| 6 |
* |
| 7 |
* @package Sellkit\Uninstaller |
| 8 |
* @version NEXT |
| 9 |
*/ |
| 10 |
|
| 11 |
defined( 'WP_UNINSTALL_PLUGIN' ) || exit; |
| 12 |
|
| 13 |
// Include file of Database Class. |
| 14 |
require_once dirname( __FILE__ ) . '/includes/db.php'; |
| 15 |
|
| 16 |
$options = get_option( 'sellkit', [] ); |
| 17 |
|
| 18 |
if ( '1' === $options['delete_data'] ) { |
| 19 |
// Drop Sellkit admin tables. |
| 20 |
Sellkit\Database::drop_all_tables(); |
| 21 |
|
| 22 |
// Delete sellkit option from wp_options. |
| 23 |
delete_option( 'sellkit' ); |
| 24 |
|
| 25 |
// Clear any cached data that has been removed. |
| 26 |
wp_cache_flush(); |
| 27 |
} |
| 28 |
|