function ModuleHandler::loadAll
Loads all enabled modules.
Overrides ModuleHandlerInterface::loadAll
1 call to ModuleHandler::loadAll()
- ModuleHandler::reload in core/lib/ Drupal/ Core/ Extension/ ModuleHandler.php 
- Reloads all enabled modules.
File
- 
              core/lib/ Drupal/ Core/ Extension/ ModuleHandler.php, line 138 
Class
- ModuleHandler
- Class that manages modules in a Drupal installation.
Namespace
Drupal\Core\ExtensionCode
public function loadAll() {
  if (!$this->loaded) {
    foreach ($this->moduleList as $name => $module) {
      $this->load($name);
    }
    $this->loaded = TRUE;
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
