You are here

public function ModuleHandler::isLoaded in Drupal 8

Same name and namespace in other branches
  1. 9 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\Extension

Code

public function isLoaded() {
  return $this->loaded;
}