protected function CachedModuleHandler::getCachedImplementationInfo

Retrieves hook implementation info from the cache.

1 call to CachedModuleHandler::getCachedImplementationInfo()

File

drupal/core/lib/Drupal/Core/Extension/CachedModuleHandler.php, line 158
Contains Drupal\Core\Extension\CachedModuleHandler.

Class

CachedModuleHandler
Class that manages enabled modules in a Drupal installation.

Namespace

Drupal\Core\Extension

Code

protected function getCachedImplementationInfo() {
  if ($cache = $this->bootstrapCache
    ->get('module_implements')) {
    return $cache->data;
  }
  else {
    return array();
  }
}