| 1 |
<?php |
| 2 |
|
| 3 |
function webling_plugin_uninstall() { |
| 4 |
// removing options |
| 5 |
// we don't want an apikey to be laying around in the database |
| 6 |
// the cache should already be cleared by the deactivation hook |
| 7 |
// we keep the webling tables, they don't contain sensitive data |
| 8 |
delete_option('webling-db-version'); |
| 9 |
delete_option('webling-cache-state'); |
| 10 |
delete_option('webling-options'); |
| 11 |
} |
| 12 |
|