You are here

emaillog.install in Logging and alerts 6

Install, update and uninstall functions for the emaillog module.

File

emaillog/emaillog.install
View source
<?php

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

/**
 * Implementation of hook_uninstall().
 */
function emaillog_uninstall() {
  $severities = array_keys(watchdog_severity_levels());
  foreach ($severities as $severity) {
    variable_del('emaillog_' . $severity);
  }
}

Functions

Namesort descending Description
emaillog_uninstall Implementation of hook_uninstall().