function ModuleHandler::writeCache

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::writeCache()
  2. 8.9.x core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::writeCache()
  3. 11.x core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::writeCache()

Write the hook implementation info to the cache.

Overrides ModuleHandlerInterface::writeCache

1 call to ModuleHandler::writeCache()
ModuleHandler::destruct in core/lib/Drupal/Core/Extension/ModuleHandler.php
Performs destruct operations.

File

core/lib/Drupal/Core/Extension/ModuleHandler.php, line 327

Class

ModuleHandler
Class that manages modules in a Drupal installation.

Namespace

Drupal\Core\Extension

Code

public function writeCache() {
  if ($this->cacheNeedsWriting) {
    $this->cacheBackend
      ->set('module_implements', $this->implementations);
    $this->cacheNeedsWriting = FALSE;
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.