You are here

function watchdog_filtering_uninstall in Watchdog Filtering 6

Same name and namespace in other branches
  1. 7 watchdog_filtering.install \watchdog_filtering_uninstall()

Implements of hook_schema().

File

./watchdog_filtering.install, line 9

Code

function watchdog_filtering_uninstall() {
  global $conf;
  foreach ($conf as $key => $value) {
    if (strpos($value, 'watchdog_filtering_') === 0) {
      variable_del($key);
    }
  }
}