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\DataCollector

Code

public function getPanelSummary() {
    return $this->t('Defined routes: @route', [
        '@route' => $this->getRoutesCount(),
    ]);
}