You are here

watchdog_filtering.install in Watchdog Filtering 6

Same filename and directory in other branches
  1. 7 watchdog_filtering.install

File

watchdog_filtering.install
View 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

Namesort descending Description
watchdog_filtering_uninstall Implements of hook_schema().