You are here

function masquerade_uninstall in Masquerade 6

Same name and namespace in other branches
  1. 5 masquerade.install \masquerade_uninstall()
  2. 7 masquerade.install \masquerade_uninstall()

Implementation of hook_uninstall().

File

./masquerade.install, line 77
masquerade.install

Code

function masquerade_uninstall() {
  drupal_uninstall_schema('masquerade');
  variable_del('masquerade_test_user');
  variable_del('masquerade_admin_roles');
  variable_del('masquerade_quick_switches');
}