function ModuleHandler::writeCache
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::writeCache()
- 10 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::writeCache()
- 11.x core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::writeCache()
Overrides ModuleHandlerInterface::writeCache
File
-
core/
lib/ Drupal/ Core/ Extension/ ModuleHandler.php, line 336
Class
- ModuleHandler
- Class that manages modules in a Drupal installation.
Namespace
Drupal\Core\ExtensionCode
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.