You are here

public function CacheDataCollector::getPanelSummary in Devel 8

Same name and namespace in other branches
  1. 8.3 webprofiler/src/DataCollector/CacheDataCollector.php \Drupal\webprofiler\DataCollector\CacheDataCollector::getPanelSummary()
  2. 8.2 webprofiler/src/DataCollector/CacheDataCollector.php \Drupal\webprofiler\DataCollector\CacheDataCollector::getPanelSummary()
  3. 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\DataCollector

Code

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),
  ]);
}