2024-11-03 14:45:40 +03:30
|
|
|
<?php
|
|
|
|
/**
|
2025-08-05 17:24:52 +03:30
|
|
|
* Hesabix Uninstall
|
|
|
|
*
|
|
|
|
* @package Hesabix
|
|
|
|
* @author Mohammad Rezai
|
|
|
|
* @author URI https://pirouz.xyz
|
|
|
|
* @since 1.0.0
|
2024-11-03 14:45:40 +03:30
|
|
|
*/
|
|
|
|
|
2025-08-05 17:24:52 +03:30
|
|
|
if (!defined('WP_UNINSTALL_PLUGIN')) {
|
|
|
|
exit;
|
2024-11-03 14:45:40 +03:30
|
|
|
}
|
|
|
|
|
2025-08-05 17:24:52 +03:30
|
|
|
if (defined('ABSPATH')) {
|
|
|
|
global $wpdb;
|
|
|
|
if (isset($wpdb->options)) {
|
|
|
|
$options = $wpdb->get_results("SELECT option_name FROM {$wpdb->options} WHERE option_name LIKE '%hesabix%'");
|
|
|
|
if ($options) {
|
|
|
|
foreach ($options as $option) {
|
|
|
|
delete_option($option->option_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isset($wpdb->prefix)) {
|
|
|
|
$wpdb->query("DROP TABLE IF EXISTS {$wpdb->prefix}hesabix");
|
|
|
|
}
|
2024-11-03 14:45:40 +03:30
|
|
|
}
|