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