public function ServicesDataCollector::getPanelSummary in Devel 8.3
Same name and namespace in other branches
- 8 webprofiler/src/DataCollector/ServicesDataCollector.php \Drupal\webprofiler\DataCollector\ServicesDataCollector::getPanelSummary()
- 8.2 webprofiler/src/DataCollector/ServicesDataCollector.php \Drupal\webprofiler\DataCollector\ServicesDataCollector::getPanelSummary()
- 4.x webprofiler/src/DataCollector/ServicesDataCollector.php \Drupal\webprofiler\DataCollector\ServicesDataCollector::getPanelSummary()
Returns the string used in vertical tab summary.
Return value
string The panel summary.
Overrides DrupalDataCollectorInterface::getPanelSummary
File
- webprofiler/
src/ DataCollector/ ServicesDataCollector.php, line 121
Class
- ServicesDataCollector
- Class ServicesDataCollector.
Namespace
Drupal\webprofiler\DataCollectorCode
public function getPanelSummary() {
return $this
->t('Initialized: @count', [
'@count' => $this
->getInitializedServicesCount(),
]);
}