You are here

public function ModuleHandler::setModuleList in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::setModuleList()

Sets an explicit list of currently active modules.

Parameters

\Drupal\Core\Extension\Extension[] $module_list: An associative array whose keys are the names of the modules and whose values are Extension objects.

Overrides ModuleHandlerInterface::setModuleList

File

core/lib/Drupal/Core/Extension/ModuleHandler.php, line 182

Class

ModuleHandler
Class that manages modules in a Drupal installation.

Namespace

Drupal\Core\Extension

Code

public function setModuleList(array $module_list = []) {
  $this->moduleList = $module_list;

  // Reset the implementations, so a new call triggers a reloading of the
  // available hooks.
  $this
    ->resetImplementations();
}