function ConfigDataCollector::getPanelSummary
Returns the string used in vertical tab summary.
Return value
string The panel summary.
Overrides DrupalDataCollectorInterface::getPanelSummary
File
-
webprofiler/
src/ DataCollector/ ConfigDataCollector.php, line 58
Class
- ConfigDataCollector
- Provides a datacollector to show all requested configs.
Namespace
Drupal\webprofiler\DataCollectorCode
public function getPanelSummary() {
return $this->t('Total: @count', [
'@count' => count($this->getConfigNames()),
]);
}