You are here

customerroralt.install in Customerror 7

Install, update and uninstall functions for the customerroralt module.

File

customerroralt/customerroralt.install
View source
<?php

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

/**
 * Implements hook_uninstall().
 */
function customerroralt_uninstall() {
  db_delete('variable')
    ->condition('name', 'customerroralt_%', 'LIKE')
    ->execute();
}

Functions

Namesort descending Description
customerroralt_uninstall Implements hook_uninstall().