You are here

function user_limit_uninstall in User Limit 7

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

Implements hook_uninstall().

File

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

Code

function user_limit_uninstall() {

  // Remove User Limit variables.
  variable_del('user_limit');
  variable_del('user_limit_uid1');
  variable_del('user_limit_active');
  variable_del('user_limit_message');
  variable_del('user_limit_show_counts');
}