public function ConfigDataCollector::getTitle in Devel 8.2
Same name and namespace in other branches
- 8.3 webprofiler/src/DataCollector/ConfigDataCollector.php \Drupal\webprofiler\DataCollector\ConfigDataCollector::getTitle()
- 8 webprofiler/src/DataCollector/ConfigDataCollector.php \Drupal\webprofiler\DataCollector\ConfigDataCollector::getTitle()
- 4.x webprofiler/src/DataCollector/ConfigDataCollector.php \Drupal\webprofiler\DataCollector\ConfigDataCollector::getTitle()
Returns the datacollector title.
Return value
string The datacollector title.
Overrides DrupalDataCollectorInterface::getTitle
File
- webprofiler/
src/ DataCollector/ ConfigDataCollector.php, line 51
Class
- ConfigDataCollector
- Provides a datacollector to show all requested configs.
Namespace
Drupal\webprofiler\DataCollectorCode
public function getTitle() {
return $this
->t('Config');
}