You are here

function apply_for_role_uninstall in Apply for role 5

Same name and namespace in other branches
  1. 6 apply_for_role.install \apply_for_role_uninstall()
  2. 7.2 apply_for_role.install \apply_for_role_uninstall()
  3. 7 apply_for_role.install \apply_for_role_uninstall()

Implementation of hook_uninstall().

File

./apply_for_role.install, line 41
Allows users to apply for roles.

Code

function apply_for_role_uninstall() {
  db_query('DROP TABLE {users_roles_apply}');
  variable_del('users_apply_roles');
  variable_del('apply_for_role_multiple');
  variable_del('apply_for_role_register');
}