public function PhpConfigDataCollector::hasXHProf in Devel 8.3
Same name and namespace in other branches
- 8 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasXHProf()
- 8.2 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasXHProf()
- 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 68
Class
- PhpConfigDataCollector
- Provides a data collector to collect all kind of php information.
Namespace
Drupal\webprofiler\DataCollectorCode
public function hasXHProf() {
return $this->data['xhprof_enabled'];
}