function drop_down_login_uninstall in Drop Down Login 7
Implements hook_uninstall().
File
- ./
drop_down_login.install, line 11 - Install, update and uninstall functions for drop_down_login module.
Code
function drop_down_login_uninstall() {
// Delete all Variables.
db_delete('variable')
->condition('name', 'drop_down_login_%', 'LIKE')
->execute();
cache_clear_all('variables', 'cache_bootstrap');
}