public function RequestDataCollector::getPanelSummary in Devel 4.x
Same name and namespace in other branches
- 8.3 webprofiler/src/DataCollector/RequestDataCollector.php \Drupal\webprofiler\DataCollector\RequestDataCollector::getPanelSummary()
- 8 webprofiler/src/DataCollector/RequestDataCollector.php \Drupal\webprofiler\DataCollector\RequestDataCollector::getPanelSummary()
- 8.2 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 73
Class
- RequestDataCollector
- Integrate _content into the RequestDataCollector.
Namespace
Drupal\webprofiler\DataCollectorCode
public function getPanelSummary() {
return $this->data['status_code'] . ' ' . $this->data['status_text'];
}