wp-cass/uninstall.php
2024-12-20 14:33:39 +01:00

17 lines
378 B
PHP

<?php
/*
* Uninstall - Script of uninstall plugin
*
* This actions is executed when the plugin is uninstalled
*/
if (!defined('WP_UNINSTALL_PLUGIN')) {
//Unregister the settings
unregister_settings('cass_plugin_options', 'cass_plugin_options');
delete_option('cass_plugin_options');
//Drop the database
if (DB_DROP_IF_UNINSTALL) {
cass_database_drop();
}
}