public function AssetsDataCollector::getPanelSummary in Devel 8
Same name and namespace in other branches
- 8.3 webprofiler/src/DataCollector/AssetsDataCollector.php \Drupal\webprofiler\DataCollector\AssetsDataCollector::getPanelSummary()
- 8.2 webprofiler/src/DataCollector/AssetsDataCollector.php \Drupal\webprofiler\DataCollector\AssetsDataCollector::getPanelSummary()
- 4.x webprofiler/src/DataCollector/AssetsDataCollector.php \Drupal\webprofiler\DataCollector\AssetsDataCollector::getPanelSummary()
Returns the string used in vertical tab summary.
Return value
string The panel summary.
Overrides DrupalDataCollectorInterface::getPanelSummary
File
- webprofiler/
src/ DataCollector/ AssetsDataCollector.php, line 97
Class
- AssetsDataCollector
- Collects data about the used assets (CSS/JS).
Namespace
Drupal\webprofiler\DataCollectorCode
public function getPanelSummary() {
return $this
->t('Total: @count', [
'@count' => $this
->getCssCount() + $this
->getJsCount(),
]);
}