You are here

public function HttpDataCollector::getPanelSummary in Devel 8.3

Same name and namespace in other branches
  1. 8 webprofiler/src/DataCollector/HttpDataCollector.php \Drupal\webprofiler\DataCollector\HttpDataCollector::getPanelSummary()
  2. 8.2 webprofiler/src/DataCollector/HttpDataCollector.php \Drupal\webprofiler\DataCollector\HttpDataCollector::getPanelSummary()
  3. 4.x webprofiler/src/DataCollector/HttpDataCollector.php \Drupal\webprofiler\DataCollector\HttpDataCollector::getPanelSummary()

Returns the string used in vertical tab summary.

Return value

string The panel summary.

Overrides DrupalDataCollectorInterface::getPanelSummary

File

webprofiler/src/DataCollector/HttpDataCollector.php, line 160

Class

HttpDataCollector
Collects data about http calls during request.

Namespace

Drupal\webprofiler\DataCollector

Code

public function getPanelSummary() {
  return $this
    ->t('Completed @completed, error @error', [
    '@completed' => $this
      ->getCompletedRequestsCount(),
    '@error' => $this
      ->getFailedRequestsCount(),
  ]);
}