You are here

user_limit.install in User Limit 6

Same filename and directory in other branches
  1. 7 user_limit.install

Performs cleanup on uninstall of module.

File

user_limit.install
View 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

Namesort descending Description
user_limit_uninstall Implementation of hook_uninstall().