You are here

user_pwreset_timeout.install in User Password Reset Link Timeout 7

Same filename and directory in other branches
  1. 8 user_pwreset_timeout.install

Install, update and uninstall functions for the user_pwreset_timeout module.

File

user_pwreset_timeout.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the user_pwreset_timeout module.
 */

/**
 * Implements hook_install().
 */
function user_pwreset_timeout_uninstall() {

  // Delete the variable since it didn't exist before install of this module.
  variable_del('user_password_reset_timeout');
}

Functions