protected function RequestController::buildMainTableHeader in MongoDB 8.2
Build the main table header.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup[] A "table" element header array.
1 call to RequestController::buildMainTableHeader()
- RequestController::buildMainTable in modules/
mongodb_watchdog/ src/ Controller/ RequestController.php - Build the main table.
File
- modules/
mongodb_watchdog/ src/ Controller/ RequestController.php, line 133
Class
- RequestController
- The controller for the request events page.
Namespace
Drupal\mongodb_watchdog\ControllerCode
protected function buildMainTableHeader() : array {
$header = [
$this
->t('Sequence'),
$this
->t('Type'),
$this
->t('Severity'),
$this
->t('Event'),
$this
->t('File'),
$this
->t('Line'),
];
return $header;
}