1 dblog.module | _dblog_get_message_types() |
Gathers a list of uniquely defined database log message types.
Return value
array: List of uniquely defined database log message types.
File
- core/
modules/ dblog/ dblog.module, line 108 - System monitoring and logging for administrators.
Code
function _dblog_get_message_types() {
$types = array();
$result = db_query('SELECT DISTINCT(type) FROM {watchdog} ORDER BY type');
foreach ($result as $object) {
$types[] = $object->type;
}
return $types;
}