public function ModuleHandler::getHookInfo in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::getHookInfo()
- 9 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::getHookInfo()
File
- core/
lib/ Drupal/ Core/ Extension/ ModuleHandler.php, line 290
Class
- ModuleHandler
- Class that manages modules in a Drupal installation.
Namespace
Drupal\Core\ExtensionCode
public function getHookInfo() {
if (!isset($this->hookInfo)) {
if ($cache = $this->cacheBackend
->get('hook_info')) {
$this->hookInfo = $cache->data;
}
else {
$this
->buildHookInfo();
$this->cacheBackend
->set('hook_info', $this->hookInfo);
}
}
return $this->hookInfo;
}