| Versionen | |
|---|---|
| drupal6 – drupal7 | dblog_filters() |
List dblog administration filters that can be applied.
modules/
<?php
function dblog_filters() {
$filters = array();
foreach (_dblog_get_message_types() as $type) {
$types[$type] = t($type);
}
if (!empty($types)) {
$filters['type'] = array(
'title' => t('Type'),
'where' => "w.type = '%s'",
'options' => $types,
);
}
$filters['severity'] = array(
'title' => t('Severity'),
'where' => 'w.severity = %d',
'options' => watchdog_severity_levels(),
);
return $filters;
}
?>
Kommentare
Kommentar hinzufügen