public function RequestDataCollector::getPanelSummary in Devel 8
Same name and namespace in other branches
- 8.3 webprofiler/src/DataCollector/RequestDataCollector.php \Drupal\webprofiler\DataCollector\RequestDataCollector::getPanelSummary()
- 8.2 webprofiler/src/DataCollector/RequestDataCollector.php \Drupal\webprofiler\DataCollector\RequestDataCollector::getPanelSummary()
- 4.x webprofiler/src/DataCollector/RequestDataCollector.php \Drupal\webprofiler\DataCollector\RequestDataCollector::getPanelSummary()
Returns the string used in vertical tab summary.
Return value
string The panel summary.
Overrides DrupalDataCollectorInterface::getPanelSummary
File
- webprofiler/
src/ DataCollector/ RequestDataCollector.php, line 74
Class
- RequestDataCollector
- Integrate _content into the RequestDataCollector
Namespace
Drupal\webprofiler\DataCollectorCode
public function getPanelSummary() {
return $this->data['status_code'] . ' ' . $this->data['status_text'];
}