public ModuleHandler::loadAll()
Loads all enabled modules.
Overrides ModuleHandlerInterface::loadAll
File
- core/lib/Drupal/Core/Extension/ModuleHandler.php, line 137
Class
- ModuleHandler
- Class that manages modules in a Drupal installation.
Namespace
Drupal\Core\Extension
Code
1 2 3 4 5 6 7 8 | public function loadAll() { if (! $this ->loaded) { foreach ( $this ->moduleList as $name => $module ) { $this ->load( $name ); } $this ->loaded = TRUE; } } |
Please login to continue.