| Versionen | |
|---|---|
| drupal6 – drupal7 | _dblog_get_message_types() |
modules/
<?php
function _dblog_get_message_types() {
$types = array();
$result = db_query('SELECT DISTINCT(type) FROM {watchdog} ORDER BY type');
while ($object = db_fetch_object($result)) {
$types[] = $object->type;
}
return $types;
}
?>
Kommentare
Kommentar hinzufügen