public function CacheDataCollector::getPanelSummary in Devel 8.2
Same name and namespace in other branches
- 8.3 webprofiler/src/DataCollector/CacheDataCollector.php \Drupal\webprofiler\DataCollector\CacheDataCollector::getPanelSummary()
- 8 webprofiler/src/DataCollector/CacheDataCollector.php \Drupal\webprofiler\DataCollector\CacheDataCollector::getPanelSummary()
- 4.x webprofiler/src/DataCollector/CacheDataCollector.php \Drupal\webprofiler\DataCollector\CacheDataCollector::getPanelSummary()
Returns the string used in vertical tab summary.
Return value
string The panel summary.
Overrides DrupalDataCollectorInterface::getPanelSummary
File
- webprofiler/
src/ DataCollector/ CacheDataCollector.php, line 159
Class
- CacheDataCollector
- Collects the used cache bins and cache CIDs.
Namespace
Drupal\webprofiler\DataCollectorCode
public function getPanelSummary() {
return $this
->t('Hit: @cache_hit, miss: @cache_miss', [
'@cache_hit' => $this
->getCacheCidsCount(CacheDataCollector::WEBPROFILER_CACHE_HIT),
'@cache_miss' => $this
->getCacheCidsCount(CacheDataCollector::WEBPROFILER_CACHE_MISS),
]);
}