function ViewsDataCollector::getPanelSummary

Overrides DrupalDataCollectorInterface::getPanelSummary

File

webprofiler/src/DataCollector/ViewsDataCollector.php, line 108

Class

ViewsDataCollector
Collects data about rendered views.

Namespace

Drupal\webprofiler\DataCollector

Code

public function getPanelSummary() {
    return $this->t('Total: @count', [
        '@count' => $this->getViewsCount(),
    ]);
}