You are here

function apply_for_role_uninstall in Apply for role 7.2

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

Implements hook_uninstall().

File

./apply_for_role.install, line 76
Installs the Apply for Role (AFR) module.

Code

function apply_for_role_uninstall() {

  //Remove variables on uninstall.
  variable_del('users_apply_roles');
  variable_del('apply_for_role_multiple');
  variable_del('apply_for_role_register');
  variable_del('apply_for_role_intro_text');
}