function _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.

1 call to _dblog_get_message_types()
dblog_filters in drupal/modules/dblog/dblog.admin.inc
Creates a list of database log administration filters that can be applied.

File

drupal/modules/dblog/dblog.module, line 130
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;
}