You are here

public function RequestDataCollector::getPanelSummary in Devel 8

Same name and namespace in other branches
  1. 8.3 webprofiler/src/DataCollector/RequestDataCollector.php \Drupal\webprofiler\DataCollector\RequestDataCollector::getPanelSummary()
  2. 8.2 webprofiler/src/DataCollector/RequestDataCollector.php \Drupal\webprofiler\DataCollector\RequestDataCollector::getPanelSummary()
  3. 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\DataCollector

Code

public function getPanelSummary() {
  return $this->data['status_code'] . ' ' . $this->data['status_text'];
}