You are here

public function TimeDataCollector::getPanelSummary in Devel 8

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

Returns the string used in vertical tab summary.

Return value

string The panel summary.

Overrides DrupalDataCollectorInterface::getPanelSummary

File

webprofiler/src/DataCollector/TimeDataCollector.php, line 84

Class

TimeDataCollector
Class TimeDataCollector.

Namespace

Drupal\webprofiler\DataCollector

Code

public function getPanelSummary() {
  return $this
    ->t('Duration: @duration', [
    '@duration' => sprintf('%.0f ms', $this
      ->getDuration()),
  ]);
}