public function ModuleHandler::isLoaded in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::isLoaded()
Returns whether all modules have been loaded.
Return value
bool A Boolean indicating whether all modules have been loaded. This means all modules; the load status of bootstrap modules cannot be checked.
Overrides ModuleHandlerInterface::isLoaded
File
- core/
lib/ Drupal/ Core/ Extension/ ModuleHandler.php, line 158
Class
- ModuleHandler
- Class that manages modules in a Drupal installation.
Namespace
Drupal\Core\ExtensionCode
public function isLoaded() {
return $this->loaded;
}