public function PhpConfigDataCollector::getPanelSummary in Devel 8
Same name and namespace in other branches
- 8.3 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::getPanelSummary()
- 8.2 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::getPanelSummary()
- 4.x webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::getPanelSummary()
Returns the string used in vertical tab summary.
Return value
string The panel summary.
Overrides DrupalDataCollectorInterface::getPanelSummary
File
- webprofiler/
src/ DataCollector/ PhpConfigDataCollector.php, line 146
Class
- PhpConfigDataCollector
- Provides a data collector to collect all kind of php information.
Namespace
Drupal\webprofiler\DataCollectorCode
public function getPanelSummary() {
return $this
->t('PHP: @version', [
'@version' => $this
->getPhpVersion(),
]);
}