You are here

auto_username.install in Automatic User Names 7

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

Install, update and uninstall functions for the auto_username module.

File

auto_username.install
View source
<?php

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

/**
 * Implements hook_uninstall().
 */
function auto_username_uninstall() {

  // Delete all the aun variables and then clear the variable cache
  db_query("DELETE FROM {variable} WHERE name LIKE 'aun_%'");
  cache_clear_all('variables', 'cache');
}

Functions

Namesort descending Description
auto_username_uninstall Implements hook_uninstall().