You are here

function user_limit_uninstall in User Limit 6

Same name and namespace in other branches
  1. 7 user_limit.install \user_limit_uninstall()

Implementation of hook_uninstall().

File

./user_limit.install, line 11
Performs cleanup on uninstall of module.

Code

function user_limit_uninstall() {

  // Remove all of our variables.
  variable_del('user_limit');
  variable_del('user_limit_uid1');
  variable_del('user_limit_active');
  variable_del('user_limit_message');
}