function StateDataCollector::getPanelSummary

Overrides DrupalDataCollectorInterface::getPanelSummary

File

webprofiler/src/DataCollector/StateDataCollector.php, line 55

Class

StateDataCollector
Provides a data collector to get all requested state values.

Namespace

Drupal\webprofiler\DataCollector

Code

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