You are here

public function MailDataCollector::getPanelSummary in Devel 8.2

Same name and namespace in other branches
  1. 8.3 webprofiler/src/DataCollector/MailDataCollector.php \Drupal\webprofiler\DataCollector\MailDataCollector::getPanelSummary()
  2. 8 webprofiler/src/DataCollector/MailDataCollector.php \Drupal\webprofiler\DataCollector\MailDataCollector::getPanelSummary()
  3. 4.x webprofiler/src/DataCollector/MailDataCollector.php \Drupal\webprofiler\DataCollector\MailDataCollector::getPanelSummary()

Returns the string used in vertical tab summary.

Return value

string The panel summary.

Overrides DrupalDataCollectorInterface::getPanelSummary

File

webprofiler/src/DataCollector/MailDataCollector.php, line 89

Class

MailDataCollector
Class MailDataCollector

Namespace

Drupal\webprofiler\DataCollector

Code

public function getPanelSummary() {
  return $this
    ->t('Total: @count', [
    '@count' => $this
      ->getMailSent(),
  ]);
}