You are here

public function PhpConfigDataCollector::hasXHProf in Devel 8

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

Returns true if the XHProf is enabled.

Return value

Boolean true if XHProf is enabled, false otherwise

File

webprofiler/src/DataCollector/PhpConfigDataCollector.php, line 69

Class

PhpConfigDataCollector
Provides a data collector to collect all kind of php information.

Namespace

Drupal\webprofiler\DataCollector

Code

public function hasXHProf() {
  return $this->data['xhprof_enabled'];
}