public function StateDataCollector::getPanelSummary in Devel 8.3
Same name and namespace in other branches
- 8 webprofiler/src/DataCollector/StateDataCollector.php \Drupal\webprofiler\DataCollector\StateDataCollector::getPanelSummary()
- 8.2 webprofiler/src/DataCollector/StateDataCollector.php \Drupal\webprofiler\DataCollector\StateDataCollector::getPanelSummary()
- 4.x webprofiler/src/DataCollector/StateDataCollector.php \Drupal\webprofiler\DataCollector\StateDataCollector::getPanelSummary()
Returns the string used in vertical tab summary.
Return value
string The panel summary.
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\DataCollectorCode
public function getPanelSummary() {
return $this
->t('Total: @variables', [
'@variables' => $this
->getStateKeysCount(),
]);
}