You are here

public function PhpConfigDataCollector::hasEAccelerator in Devel 8.3

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

Returns true if EAccelerator is enabled.

Return value

Boolean true if EAccelerator is enabled, false otherwise

1 call to PhpConfigDataCollector::hasEAccelerator()
PhpConfigDataCollector::hasAccelerator in webprofiler/src/DataCollector/PhpConfigDataCollector.php
Returns true if any accelerator is enabled.

File

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

Class

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

Namespace

Drupal\webprofiler\DataCollector

Code

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