Initial Drupal 11 with DDEV setup
This commit is contained in:
16
web/core/modules/dblog/dblog.module
Normal file
16
web/core/modules/dblog/dblog.module
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
*/
|
||||
|
||||
/**
|
||||
* Gathers a list of uniquely defined database log message types.
|
||||
*
|
||||
* @return array
|
||||
* List of uniquely defined database log message types.
|
||||
*/
|
||||
function _dblog_get_message_types() {
|
||||
return \Drupal::database()->query('SELECT DISTINCT([type]) FROM {watchdog} ORDER BY [type]')
|
||||
->fetchAllKeyed(0, 0);
|
||||
}
|
||||
Reference in New Issue
Block a user