user_limit.install in User Limit 7
Same filename and directory in other branches
Performs cleanup on uninstall of User Limit module.
File
user_limit.installView source
<?php
/**
* @file
* Performs cleanup on uninstall of User Limit module.
*/
/**
* Implements hook_uninstall().
*/
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');
}
Functions
Name | Description |
---|---|
user_limit_uninstall | Implements hook_uninstall(). |