function emaillog_uninstall in Logging and alerts 6
Same name and namespace in other branches
- 6.2 emaillog/emaillog.install \emaillog_uninstall()
- 7.2 emaillog/emaillog.install \emaillog_uninstall()
- 7 emaillog/emaillog.install \emaillog_uninstall()
Implementation of hook_uninstall().
File
- emaillog/
emaillog.install, line 11 - Install, update and uninstall functions for the emaillog module.
Code
function emaillog_uninstall() {
$severities = array_keys(watchdog_severity_levels());
foreach ($severities as $severity) {
variable_del('emaillog_' . $severity);
}
}