public static function TidewaysXHProfExtension::isLoaded in XHProf 8
Returns TRUE if this extension is loaded into the PHP interpreter.
Return value
bool TRUE when extension loaded or FALSE otherwise.
Overrides ExtensionInterface::isLoaded
1 call to TidewaysXHProfExtension::isLoaded()
- Profiler::getExtensions in src/
Profiler.php - Returns a list of available PHP extensions for profiling.
File
- src/
Extension/ TidewaysXHProfExtension.php, line 15
Class
- TidewaysXHProfExtension
- Implements support for tideways xhprof extension.
Namespace
Drupal\xhprof\ExtensionCode
public static function isLoaded() {
return extension_loaded('tideways_xhprof');
}