function RoutingDataCollector::getPanelSummary
Overrides DrupalDataCollectorInterface::getPanelSummary
File
-
webprofiler/
src/ DataCollector/ RoutingDataCollector.php, line 81
Class
- RoutingDataCollector
- Provides a data collector which shows all available routes.
Namespace
Drupal\webprofiler\DataCollectorCode
public function getPanelSummary() {
return $this->t('Defined routes: @route', [
'@route' => $this->getRoutesCount(),
]);
}