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