emaillog.install in Logging and alerts 7
Same filename and directory in other branches
Install, update and uninstall functions for the emaillog module.
File
emaillog/emaillog.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the emaillog module.
*/
/**
* Implements hook_uninstall().
*/
function emaillog_uninstall() {
$severities = array_keys(watchdog_severity_levels());
foreach ($severities as $severity) {
variable_del('emaillog_' . $severity);
}
}
Functions
Name | Description |
---|---|
emaillog_uninstall | Implements hook_uninstall(). |