| Versions | |
|---|---|
| 4.7 – 5 | _watchdog_get_message_types() |
modules/
<?php
function _watchdog_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;
}
?>