watchdog_filtering.install in Watchdog Filtering 6
Same filename and directory in other branches
File
watchdog_filtering.installView source
<?php
/**
* @file
*/
/**
* Implements of hook_schema().
*/
function watchdog_filtering_uninstall() {
global $conf;
foreach ($conf as $key => $value) {
if (strpos($value, 'watchdog_filtering_') === 0) {
variable_del($key);
}
}
}
Functions
Name![]() |
Description |
---|---|
watchdog_filtering_uninstall | Implements of hook_schema(). |