You are here

public function PerformanceTimingDataCollector::getTitle in Devel 8.3

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

Returns the datacollector title.

Return value

string The datacollector title.

Overrides DrupalDataCollectorInterface::getTitle

File

webprofiler/src/DataCollector/PerformanceTimingDataCollector.php, line 43

Class

PerformanceTimingDataCollector
Collects data about frontend performance.

Namespace

Drupal\webprofiler\DataCollector

Code

public function getTitle() {
  return $this
    ->t('Performance Timing');
}