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