protected function ControllerBase::getTop in MongoDB 8.2
Return the top element: empty by default.
Return value
array A render array for the top filter form.
1 call to ControllerBase::getTop()
- TopController::build in modules/
mongodb_watchdog/ src/ Controller/ TopController.php - Controller.
3 methods override ControllerBase::getTop()
- DetailController::getTop in modules/
mongodb_watchdog/ src/ Controller/ DetailController.php - Build the heading rows on the per-template event occurrences page.
- OverviewController::getTop in modules/
mongodb_watchdog/ src/ Controller/ OverviewController.php - Return the top element.
- RequestController::getTop in modules/
mongodb_watchdog/ src/ Controller/ RequestController.php - Build the heading rows on the per-request event occurrences page.
File
- modules/
mongodb_watchdog/ src/ Controller/ ControllerBase.php, line 121
Class
- ControllerBase
- Base controller class for paged reports.
Namespace
Drupal\mongodb_watchdog\ControllerCode
protected function getTop() : array {
$top = [];
return $top;
}