class ModuleHandler

Class that manages modules in a Drupal installation.

Hierarchy

Expanded class hierarchy of ModuleHandler

6 files declare their use of ModuleHandler
ModuleHandlerDeprecatedHookTest.php in core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookTest.php
ModuleHandlerDeprecatedHookUnimplementedTest.php in core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookUnimplementedTest.php
ModuleHandlerTest.php in core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerTest.php
ModuleHandlerTest.php in core/tests/Drupal/Tests/Core/Extension/ModuleHandlerTest.php
PluginTestBase.php in core/tests/Drupal/KernelTests/Core/Plugin/PluginTestBase.php

... See full list

2 string references to 'ModuleHandler'
core.services.yml in core/core.services.yml
core/core.services.yml
LocalTaskIntegrationTestBase::getLocalTaskManager in core/tests/Drupal/Tests/Core/Menu/LocalTaskIntegrationTestBase.php
Sets up the local task manager for the test.
1 service uses ModuleHandler
module_handler in core/core.services.yml
Drupal\Core\Extension\ModuleHandler

File

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

Namespace

Drupal\Core\Extension
View source
class ModuleHandler implements ModuleHandlerInterface {
  
  /**
   * List of loaded files.
   *
   * @var array<string, true>
   *   An associative array whose keys are file paths of loaded files, relative
   *   to the application's root directory.
   */
  protected $loadedFiles;
  
  /**
   * Installed modules, as extension objects keyed by module name.
   *
   * @var array<string, \Drupal\Core\Extension\Extension>
   */
  protected $moduleList;
  
  /**
   * Boolean indicating whether modules have been loaded.
   *
   * @var bool
   */
  protected $loaded = FALSE;
  
  /**
   * Lists of callbacks which implement an alter hook, keyed by hook name(s).
   *
   * @var array<string, list<callable>>
   */
  protected array $alterHookListeners = [];
  
  /**
   * A list of module include file keys.
   *
   * The array keys are generated from the arguments to ->loadInclude().
   * Each value is either the path of a file that was successfully included, or
   * FALSE if the given file did not exist.
   *
   * @var array<string, string|false>
   */
  protected $includeFileKeys = [];
  
  /**
   * Implementation lists by hook name.
   *
   * @var array<string, \Drupal\Core\Hook\ImplementationList>
   */
  protected array $hookImplementationLists = [];
  
  /**
   * Raw list of hook implementations by hook name.
   *
   * @var array<string, array<string, string>>|null
   */
  protected ?array $hookLists = NULL;
  
  /**
   * List of include files keyed by hook.
   *
   * @var array<string, list<string>>|null
   */
  protected ?array $hookIncludes = NULL;
  
  /**
   * List of group include files keyed by hook.
   *
   * @var array<string, list<string>>|null
   */
  protected ?array $hookGroupIncludes = NULL;
  
  /**
   * Ordering rules by hook name, packed.
   *
   * @param array<string, list<string>>
   */
  protected array $packedOrderOperations = [];
  
  /**
   * Ordering rules by hook name.
   *
   * @var array<string, list<\Drupal\Core\Hook\OrderOperation\OrderOperation>>
   */
  protected array $orderingRules = [];
  
  /**
   * Constructs a ModuleHandler object.
   *
   * @param string $root
   *   The app root.
   * @param array<string, array{type: string, pathname: string, filename: string}> $module_list
   *   An associative array whose keys are the names of installed modules and
   *   whose values are Extension class parameters. This is normally the
   *   %container.modules% parameter being set up by DrupalKernel.
   * @param \Drupal\Core\KeyValueStore\KeyValueFactoryInterface $keyValueFactory
   *   The key value factory.
   * @param \Drupal\Core\Utility\CallableResolver $callableResolver
   *   The callable resolver.
   * @param \Drupal\Core\Cache\CacheBackendInterface $cache
   *   The bootstrap cache.
   *
   * @see \Drupal\Core\DrupalKernel
   * @see \Drupal\Core\CoreServiceProvider
   */
  public function __construct(protected $root, array $module_list, protected readonly KeyValueFactoryInterface $keyValueFactory, protected readonly CallableResolver $callableResolver, protected readonly CacheBackendInterface $cache) {
    $this->moduleList = [];
    foreach ($module_list as $name => $module) {
      $this->moduleList[$name] = new Extension($this->root, $module['type'], $module['pathname'], $module['filename']);
    }
  }
  
  /**
   * {@inheritdoc}
   */
  public function load($name) {
    if (isset($this->loadedFiles[$name])) {
      return TRUE;
    }
    if (isset($this->moduleList[$name])) {
      $this->moduleList[$name]
        ->load();
      $this->loadedFiles[$name] = TRUE;
      return TRUE;
    }
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function loadAll() {
    if (!$this->loaded) {
      foreach ($this->moduleList as $name => $module) {
        $this->load($name);
      }
      $this->loaded = TRUE;
    }
  }
  
  /**
   * {@inheritdoc}
   */
  public function reload() {
    $this->loaded = FALSE;
    $this->loadAll();
  }
  
  /**
   * {@inheritdoc}
   */
  public function isLoaded() {
    return $this->loaded;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getModuleList() {
    return $this->moduleList;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getModule($name) {
    if (isset($this->moduleList[$name])) {
      return $this->moduleList[$name];
    }
    throw new UnknownExtensionException(sprintf('The module %s does not exist.', $name));
  }
  
  /**
   * {@inheritdoc}
   */
  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();
  }
  
  /**
   * {@inheritdoc}
   */
  public function addModule($name, $path) {
    @trigger_error(__METHOD__ . '() is deprecated in drupal:11.2.0 and is removed from drupal:12.0.0. There is no direct replacement. See https://www.drupal.org/node/3491200', E_USER_DEPRECATED);
    $this->add('module', $name, $path);
  }
  
  /**
   * {@inheritdoc}
   */
  public function addProfile($name, $path) {
    @trigger_error(__METHOD__ . '() is deprecated in drupal:11.2.0 and is removed from drupal:12.0.0. There is no direct replacement. See https://www.drupal.org/node/3491200', E_USER_DEPRECATED);
    $this->add('profile', $name, $path);
  }
  
  /**
   * Adds a module or profile to the list of currently active modules.
   *
   * @param string $type
   *   The extension type; either 'module' or 'profile'.
   * @param string $name
   *   The module name; e.g., 'node'.
   * @param string $path
   *   The module path; e.g., 'core/modules/node'.
   *
   * @deprecated in drupal:11.2.0 and is removed from drupal:12.0.0.
   * There is no direct replacement.
   * @see https://www.drupal.org/node/3491200
   */
  protected function add($type, $name, $path) {
    $pathname = "{$path}/{$name}.info.yml";
    $php_file_path = $this->root . "/{$path}/{$name}.{$type}";
    if ($filename = file_exists($php_file_path) ? "{$name}.{$type}" : NULL) {
      include_once $php_file_path;
    }
    $this->moduleList[$name] = new Extension($this->root, $type, $pathname, $filename);
    $this->resetImplementations();
    $hook_collector = HookCollectorPass::collectAllHookImplementations([
      $name => [
        'pathname' => $pathname,
      ],
    ]);
    // A module freshly added will not be registered on the container yet.
    // Load all includes so the legacy section of invoke can handle hooks in
    // includes.
    $hook_collector->loadAllIncludes();
    // Register procedural implementations.
    foreach ($hook_collector->getAddableImplementations() as $hook => $functions_by_module) {
      $list = $this->hookImplementationLists[$hook] ?? NULL;
      $listeners = $list?->listeners ?? [];
      $modules = $list?->modules ?? [];
      foreach ($functions_by_module as $module => $function) {
        $listeners[] = $function;
        $modules[] = $module;
      }
      if ($listeners) {
        $this->hookImplementationLists[$hook] = new ImplementationList($listeners, $modules);
      }
    }
  }
  
  /**
   * {@inheritdoc}
   */
  public function buildModuleDependencies(array $modules) {
    foreach ($modules as $module) {
      $graph[$module->getName()]['edges'] = [];
      if (isset($module->info['dependencies']) && is_array($module->info['dependencies'])) {
        foreach ($module->info['dependencies'] as $dependency) {
          $dependency_data = Dependency::createFromString($dependency);
          $graph[$module->getName()]['edges'][$dependency_data->getName()] = $dependency_data;
        }
      }
    }
    $graph_object = new Graph($graph ?? []);
    $graph = $graph_object->searchAndSort();
    foreach ($graph as $module_name => $data) {
      $modules[$module_name]->required_by = $data['reverse_paths'] ?? [];
      $modules[$module_name]->requires = $data['paths'] ?? [];
      $modules[$module_name]->sort = $data['weight'];
    }
    return $modules;
  }
  
  /**
   * {@inheritdoc}
   */
  public function moduleExists($module) {
    return isset($this->moduleList[$module]);
  }
  
  /**
   * {@inheritdoc}
   */
  public function loadAllIncludes($type, $name = NULL) {
    @trigger_error("ModuleHandler::loadAllIncludes() is deprecated in drupal:11.3.0 and is removed from drupal:13.0.0. There is no replacement. See https://www.drupal.org/node/3536432", E_USER_DEPRECATED);
    foreach ($this->moduleList as $module => $filename) {
      $this->loadInclude($module, $type, $name);
    }
  }
  
  /**
   * {@inheritdoc}
   */
  public function loadInclude($module, $type, $name = NULL) {
    if ($type == 'install') {
      // Make sure the installation API is available.
      include_once $this->root . '/core/includes/install.inc';
    }
    $name = $name ?: $module;
    $key = $type . ':' . $module . ':' . $name;
    if (isset($this->includeFileKeys[$key])) {
      return $this->includeFileKeys[$key];
    }
    if (isset($this->moduleList[$module])) {
      $file = $this->root . '/' . $this->moduleList[$module]
        ->getPath() . "/{$name}.{$type}";
      if (is_file($file)) {
        require_once $file;
        $this->includeFileKeys[$key] = $file;
        return $file;
      }
      else {
        $this->includeFileKeys[$key] = FALSE;
      }
    }
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getHookInfo() {
    return [];
  }
  
  /**
   * {@inheritdoc}
   */
  public function resetImplementations() {
    $this->alterHookListeners = [];
    $this->hookImplementationLists = [];
  }
  
  /**
   * {@inheritdoc}
   */
  public function hasImplementations(string $hook, $modules = NULL) : bool {
    $list = $this->getHookImplementationList($hook);
    if ($modules === NULL) {
      return $list->hasImplementations();
    }
    return $list->hasImplementationsForModules((array) $modules);
  }
  
  /**
   * {@inheritdoc}
   */
  public function invokeAllWith(string $hook, callable $callback) : void {
    $list = $this->getHookImplementationList($hook);
    foreach ($list->iterateByModule() as $module => $listener) {
      $callback($listener, $module);
    }
  }
  
  /**
   * {@inheritdoc}
   */
  public function invoke($module, $hook, array $args = []) {
    $list = $this->getHookImplementationList($hook);
    $listeners = $list->getForModule($module);
    if ($listeners) {
      if (count($listeners) > 1) {
        throw new \LogicException("Module {$module} should not implement {$hook} more than once");
      }
      return reset($listeners)(...$args);
    }
    return $this->legacyInvoke($module, $hook, $args);
  }
  
  /**
   * Calls a function called $module . '_' . $hook if one exists.
   *
   * @param string $module
   *   The name of the module (without the .module extension).
   * @param string $hook
   *   The name of the hook to invoke.
   * @param array $args
   *   Arguments to pass to the hook implementation.
   *
   * @return mixed
   *   The return value of the hook implementation.
   */
  protected function legacyInvoke($module, $hook, array $args = []) {
    $this->load($module);
    $function = $module . '_' . $hook;
    if (function_exists($function) && !(new \ReflectionFunction($function))->getAttributes(LegacyHook::class)) {
      return $function(...$args);
    }
    return NULL;
  }
  
  /**
   * {@inheritdoc}
   */
  public function invokeAll($hook, array $args = []) {
    $return = [];
    $this->invokeAllWith($hook, function (callable $hook, string $module) use ($args, &$return) {
      $result = call_user_func_array($hook, $args);
      if (isset($result) && is_array($result)) {
        $return = NestedArray::mergeDeep($return, $result);
      }
      elseif (isset($result)) {
        $return[] = $result;
      }
    });
    return $return;
  }
  
  /**
   * {@inheritdoc}
   */
  public function invokeDeprecated($description, $module, $hook, array $args = []) {
    $result = $this->invoke($module, $hook, $args);
    $this->triggerDeprecationError($description, $hook);
    return $result;
  }
  
  /**
   * {@inheritdoc}
   */
  public function invokeAllDeprecated($description, $hook, array $args = []) {
    $result = $this->invokeAll($hook, $args);
    $this->triggerDeprecationError($description, $hook);
    return $result;
  }
  
  /**
   * Triggers an E_USER_DEPRECATED error if any module implements the hook.
   *
   * @param string $description
   *   Helpful text describing what to do instead of implementing this hook.
   * @param string $hook
   *   The name of the hook.
   */
  private function triggerDeprecationError($description, $hook) {
    $list = $this->getHookImplementationList($hook);
    $modules = array_unique($list->modules);
    if (!empty($modules)) {
      $message = 'The deprecated hook hook_' . $hook . '() is implemented in these modules: ';
      @trigger_error($message . implode(', ', $modules) . '. ' . $description, E_USER_DEPRECATED);
    }
  }
  
  /**
   * {@inheritdoc}
   */
  public function alter($type, &$data, &$context1 = NULL, &$context2 = NULL) {
    // Most of the time, $type is passed as a string, so for performance,
    // normalize it to that. When passed as an array, usually the first item in
    // the array is a generic type, and additional items in the array are more
    // specific variants of it, as in the case of ['form', 'form_FORM_ID'].
    if (is_array($type)) {
      $cid = implode(',', $type);
    }
    else {
      $cid = $type;
    }
    // Some alter hooks are invoked many times per page request, so store the
    // list of listeners to call, and on subsequent calls, iterate through them
    // quickly.
    if (!isset($this->alterHookListeners[$cid])) {
      $hooks = is_array($type) ? array_map(static fn(string $type) => $type . '_alter', $type) : [
        $type . '_alter',
      ];
      $this->alterHookListeners[$cid] = $this->getCombinedListeners($hooks);
    }
    foreach ($this->alterHookListeners[$cid] as $listener) {
      $listener($data, $context1, $context2);
    }
  }
  
  /**
   * Builds a list of implementations for an alter hook.
   *
   * @param list<string> $hooks
   *   The hooks passed to the ->alter() call.
   *
   * @return list<callable>
   *   List of implementation callables.
   */
  protected function getCombinedListeners(array $hooks) : array {
    // Get implementation lists for each hook.
    /** @var list<\Drupal\Core\Hook\ImplementationList> $lists */
    $lists = array_map($this->getHookImplementationList(...), $hooks);
    // Remove empty lists.
    /** @var array<int, \Drupal\Core\Hook\ImplementationList> $lists */
    $lists = array_filter($lists, fn(ImplementationList $list) => $list->hasImplementations());
    if (!$lists) {
      // No implementations exist.
      return [];
    }
    if (array_keys($lists) === [
      0,
    ]) {
      // Only the first hook has implementations.
      return $lists[0]->listeners;
    }
    // Collect the lists from each hook and group the listeners by module.
    $listeners_by_identifier = [];
    $modules_by_identifier = [];
    $identifiers_by_module = [];
    foreach ($lists as $list) {
      foreach ($list->iterateByModule() as $module => $listener) {
        $identifier = is_array($listener) ? get_class($listener[0]) . '::' . $listener[1] : $listener;
        $other_module = $modules_by_identifier[$identifier] ?? NULL;
        if ($other_module !== NULL) {
          $this->triggerErrorForDuplicateAlterHookListener($hooks, $module, $other_module, $listener, $identifier);
          // Don't add the same listener more than once.
          continue;
        }
        $listeners_by_identifier[$identifier] = $listener;
        $modules_by_identifier[$identifier] = $module;
        $identifiers_by_module[$module][] = $identifier;
      }
    }
    // First we get the the modules in moduleList order, this order is module
    // weight then alphabetical. Then we apply legacy ordering using
    // hook_module_implements_alter(). Finally we order using order attributes.
    $modules = array_keys($identifiers_by_module);
    $modules = $this->reOrderModulesForAlter($modules, $hooks[0]);
    // Create a flat list of identifiers, using the new module order.
    $identifiers = array_merge(...array_map(fn(string $module) => $identifiers_by_module[$module], $modules));
    foreach ($hooks as $hook) {
      foreach ($this->getHookOrderingRules($hook) as $rule) {
        $rule->apply($identifiers, $modules_by_identifier);
        // Order operations must not:
        // - Insert duplicate keys.
        // - Change the array to be not a list.
        // - Add or remove values.
        assert($identifiers === array_unique($identifiers));
        assert(array_is_list($identifiers));
        assert(!array_diff($identifiers, array_keys($modules_by_identifier)));
        assert(!array_diff(array_keys($modules_by_identifier), $identifiers));
      }
    }
    return array_map(static fn(string $identifier) => $listeners_by_identifier[$identifier], $identifiers);
  }
  
  /**
   * Triggers an error on duplicate alter listeners.
   *
   * This is called when the same method is registered for multiple hooks, which
   * are now part of the same alter call.
   *
   * @param list<string> $hooks
   *   Hook names from the ->alter() call.
   * @param string $module
   *   The module name for one of the hook implementations.
   * @param string $other_module
   *   The module name for another hook implementation.
   * @param callable $listener
   *   The hook listener.
   * @param string $identifier
   *   String identifier of the hook listener.
   */
  protected function triggerErrorForDuplicateAlterHookListener(array $hooks, string $module, string $other_module, callable $listener, string $identifier) : void {
    $log_message_replacements = [
      '@implementation' => is_array($listener) ? 'method ' . $identifier . '()' : 'function ' . $listener[1] . '()',
      '@hooks' => "['" . implode("', '", $hooks) . "']",
    ];
    if ($other_module !== $module) {
      // There is conflicting information about which module this
      // implementation is registered for. At this point we cannot even
      // be sure if the module is the one from the main hook or the extra
      // hook. This means that ordering may not work as expected and it is
      // unclear if the intention is to execute the code multiple times. This
      // can be resolved by using a separate method for alter hooks that
      // implement on behalf of other modules.
      trigger_error((string) new FormattableMarkup('The @implementation is registered for more than one of the alter hooks @hooks from the current ->alter() call, on behalf of different modules @module and @other_module. Only one instance will be part of the implementation list for this hook combination. For the purpose of ordering, the module @module will be used.', [
        $log_message_replacements,
        '@module' => "'{$module}'",
        '@other_module' => "'{$other_module}'",
      ]), E_USER_WARNING);
    }
    else {
      // There is no conflict, but probably one or more redundant #[Hook]
      // attributes should be removed.
      trigger_error((string) new FormattableMarkup('The @implementation is registered for more than one of the alter hooks @hooks from the current ->alter() call. Only one instance will be part of the implementation list for this hook combination.', $log_message_replacements), E_USER_NOTICE);
    }
  }
  
  /**
   * Gets ordering rules for a hook.
   *
   * @param string $hook
   *   Hook name.
   *
   * @return list<\Drupal\Core\Hook\OrderOperation\OrderOperation>
   *   List of order operations for the hook.
   */
  protected function getHookOrderingRules(string $hook) : array {
    return $this->orderingRules[$hook] ??= array_map(OrderOperation::unpack(...), $this->packedOrderOperations[$hook] ?? []);
  }
  
  /**
   * Reorder modules for alters.
   *
   * @param list<string> $modules
   *   A list of module names.
   * @param string $hook
   *   The hook being worked on, for example form_alter.
   *
   * @return list<string>
   *   The list, potentially reordered and changed by
   *   hook_module_implements_alter().
   */
  protected function reOrderModulesForAlter(array $modules, string $hook) : array {
    // Order by module order first.
    $modules = array_intersect(array_keys($this->moduleList), $modules);
    // Alter expects the module list to be in the keys.
    $implementations = array_fill_keys($modules, FALSE);
    // Let modules adjust the order solely based on the primary hook. This
    // ensures the same module order regardless of whether this block
    // runs. Calling $this->alter() recursively in this way does not
    // result in an infinite loop, because this call is for a single
    // $type, so we won't end up in this method again.
    $this->alter('module_implements', $implementations, $hook);
    return array_keys($implementations);
  }
  
  /**
   * {@inheritdoc}
   */
  public function alterDeprecated($description, $type, &$data, &$context1 = NULL, &$context2 = NULL) {
    // Invoke the alter hook. This has the side effect of populating
    // $this->alterHookListeners.
    $this->alter($type, $data, $context1, $context2);
    // The $type parameter can be an array. alter() will deal with this
    // internally, but we have to extract the proper $cid in order to discover
    // implementations.
    $cid = $type;
    if (is_array($type)) {
      $cid = implode(',', $type);
      $extra_types = $type;
      $type = array_shift($extra_types);
    }
    if (!empty($this->alterHookListeners[$cid])) {
      $functions = [];
      foreach ($this->alterHookListeners[$cid] as $listener) {
        if (is_string($listener)) {
          $functions[] = $listener;
        }
        else {
          $functions[] = get_class($listener[0]) . '::' . $listener[1];
        }
      }
      $message = 'The deprecated alter hook hook_' . $type . '_alter() is implemented in these locations: ' . implode(', ', $functions) . '.';
      @trigger_error($message . ' ' . $description, E_USER_DEPRECATED);
    }
  }
  
  /**
   * {@inheritdoc}
   */
  public function getModuleDirectories() {
    $dirs = [];
    foreach ($this->getModuleList() as $name => $module) {
      $dirs[$name] = $this->root . '/' . $module->getPath();
    }
    return $dirs;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getName($module) {
    @trigger_error(__METHOD__ . '() is deprecated in drupal:10.3.0 and is removed from drupal:12.0.0. Use \\Drupal\\Core\\Extension\\ModuleExtensionList::getName($module) instead. See https://www.drupal.org/node/3310017', E_USER_DEPRECATED);
    return \Drupal::service('extension.list.module')->getName($module);
  }
  
  /**
   * {@inheritdoc}
   */
  public function writeCache() {
    @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no need to call this method so there is no replacement. See https://www.drupal.org/node/3442349', E_USER_DEPRECATED);
  }
  
  /**
   * Gets a hook implementation list for a specific hook.
   *
   * @param string $hook
   *   The hook name.
   *
   * @return \Drupal\Core\Hook\ImplementationList
   *   Object with hook implementation callbacks and their modules.
   */
  protected function getHookImplementationList(string $hook) : ImplementationList {
    if (!isset($this->hookImplementationLists[$hook])) {
      if ($this->hookLists === NULL) {
        if ($cache = $this->cache
          ->get('hook_data')) {
          $hook_data = $cache->data;
        }
        else {
          $hook_data = $this->keyValueFactory
            ->get('hook_data')
            ->getMultiple([
            'hook_list',
            'includes',
            'group_includes',
            'packed_order_operations',
          ]);
          $this->cache
            ->set('hook_data', $hook_data);
        }
        $this->hookLists = $hook_data['hook_list'] ?? [];
        $this->hookIncludes = $hook_data['includes'] ?? [];
        $this->hookGroupIncludes = $hook_data['group_includes'] ?? [];
        $this->packedOrderOperations = $hook_data['packed_order_operations'] ?? [];
      }
      $hook_list = $this->hookLists[$hook] ?? [];
      if ($hook_list) {
        $listeners = [];
        $modules = [];
        foreach ($this->hookIncludes[$hook] ?? [] as $include) {
          include_once $include;
        }
        foreach ($this->hookGroupIncludes[$hook] ?? [] as $include) {
          @trigger_error('Autoloading hooks in the file (' . $include . ') is deprecated in drupal:11.2.0 and is removed from drupal:12.0.0. Move the functions in this file to either the .module file or other appropriate location. See https://www.drupal.org/node/3489765', E_USER_DEPRECATED);
          include_once $include;
        }
        foreach ($hook_list as $identifier => $module) {
          // Remove implementations from "other" modules.
          // This is relevant on the update page, when only the implementations
          // from system module should be used.
          if (isset($this->moduleList[$module])) {
            $listeners[] = $this->callableResolver
              ->getCallableFromDefinition($identifier);
            $modules[] = $module;
          }
        }
        $list = new ImplementationList($listeners, $modules);
        $this->hookImplementationLists[$hook] = $list;
      }
      else {
        // Set an empty implementation list.
        $this->hookImplementationLists[$hook] = new ImplementationList([], []);
      }
    }
    return $this->hookImplementationLists[$hook];
  }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title
ModuleHandler::$alterHookListeners protected property Lists of callbacks which implement an alter hook, keyed by hook name(s).
ModuleHandler::$hookGroupIncludes protected property List of group include files keyed by hook.
ModuleHandler::$hookImplementationLists protected property Implementation lists by hook name.
ModuleHandler::$hookIncludes protected property List of include files keyed by hook.
ModuleHandler::$hookLists protected property Raw list of hook implementations by hook name.
ModuleHandler::$includeFileKeys protected property A list of module include file keys.
ModuleHandler::$loaded protected property Boolean indicating whether modules have been loaded.
ModuleHandler::$loadedFiles protected property List of loaded files.
ModuleHandler::$moduleList protected property Installed modules, as extension objects keyed by module name.
ModuleHandler::$orderingRules protected property Ordering rules by hook name.
ModuleHandler::$packedOrderOperations protected property Ordering rules by hook name, packed.
ModuleHandler::add Deprecated protected function Adds a module or profile to the list of currently active modules.
ModuleHandler::addModule public function Adds a module to the list of currently active modules. Overrides ModuleHandlerInterface::addModule
ModuleHandler::addProfile public function Adds an installation profile to the list of currently active modules. Overrides ModuleHandlerInterface::addProfile
ModuleHandler::alter public function Passes alterable variables to specific hook_TYPE_alter() implementations. Overrides ModuleHandlerInterface::alter
ModuleHandler::alterDeprecated public function Passes alterable variables to deprecated hook_TYPE_alter() implementations. Overrides ModuleHandlerInterface::alterDeprecated
ModuleHandler::buildModuleDependencies public function Determines which modules require and are required by each module. Overrides ModuleHandlerInterface::buildModuleDependencies
ModuleHandler::getCombinedListeners protected function Builds a list of implementations for an alter hook.
ModuleHandler::getHookImplementationList protected function Gets a hook implementation list for a specific hook.
ModuleHandler::getHookInfo public function Retrieves a list of hooks that are declared through hook_hook_info(). Overrides ModuleHandlerInterface::getHookInfo
ModuleHandler::getHookOrderingRules protected function Gets ordering rules for a hook.
ModuleHandler::getModule public function Returns a module extension object from the currently active modules list. Overrides ModuleHandlerInterface::getModule
ModuleHandler::getModuleDirectories public function Returns an array of directories for all enabled modules. Overrides ModuleHandlerInterface::getModuleDirectories
ModuleHandler::getModuleList public function Returns the list of currently active modules. Overrides ModuleHandlerInterface::getModuleList
ModuleHandler::getName public function Gets the human readable name of a given module. Overrides ModuleHandlerInterface::getName
ModuleHandler::hasImplementations public function Determines whether there are implementations of a hook. Overrides ModuleHandlerInterface::hasImplementations
ModuleHandler::invoke public function Invokes a hook in a particular module. Overrides ModuleHandlerInterface::invoke
ModuleHandler::invokeAll public function Invokes a hook in all enabled modules that implement it. Overrides ModuleHandlerInterface::invokeAll
ModuleHandler::invokeAllDeprecated public function Invokes a deprecated hook in all enabled modules that implement it. Overrides ModuleHandlerInterface::invokeAllDeprecated
ModuleHandler::invokeAllWith public function Executes a callback for each implementation of a hook. Overrides ModuleHandlerInterface::invokeAllWith
ModuleHandler::invokeDeprecated public function Invokes a deprecated hook in a particular module. Overrides ModuleHandlerInterface::invokeDeprecated
ModuleHandler::isLoaded public function Returns whether all modules have been loaded. Overrides ModuleHandlerInterface::isLoaded
ModuleHandler::legacyInvoke protected function Calls a function called $module . &#039;_&#039; . $hook if one exists.
ModuleHandler::load public function Includes a module&#039;s .module file. Overrides ModuleHandlerInterface::load
ModuleHandler::loadAll public function Loads all enabled modules. Overrides ModuleHandlerInterface::loadAll
ModuleHandler::loadAllIncludes public function Loads an include file for each enabled module. Overrides ModuleHandlerInterface::loadAllIncludes
ModuleHandler::loadInclude public function Loads a module include file. Overrides ModuleHandlerInterface::loadInclude
ModuleHandler::moduleExists public function Determines whether a given module is enabled. Overrides ModuleHandlerInterface::moduleExists
ModuleHandler::reload public function Reloads all enabled modules. Overrides ModuleHandlerInterface::reload
ModuleHandler::reOrderModulesForAlter protected function Reorder modules for alters.
ModuleHandler::resetImplementations public function Resets the cached list of hook implementations. Overrides ModuleHandlerInterface::resetImplementations
ModuleHandler::setModuleList public function Sets an explicit list of currently active modules. Overrides ModuleHandlerInterface::setModuleList
ModuleHandler::triggerDeprecationError private function Triggers an E_USER_DEPRECATED error if any module implements the hook.
ModuleHandler::triggerErrorForDuplicateAlterHookListener protected function Triggers an error on duplicate alter listeners.
ModuleHandler::writeCache public function Does not do anything. Overrides ModuleHandlerInterface::writeCache
ModuleHandler::__construct public function Constructs a ModuleHandler object.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.