Search for handle

  1. Search 7.x for handle
  2. Search 9.5.x for handle
  3. Search 8.9.x for handle
  4. Search 10.3.x for handle
  5. Other projects
Title Object type File name Summary
ModuleHandler::getModuleDirectories function core/lib/Drupal/Core/Extension/ModuleHandler.php Returns an array of directories for all enabled modules.
ModuleHandler::getModuleList function core/lib/Drupal/Core/Extension/ModuleHandler.php Returns the list of currently active modules.
ModuleHandler::getName function core/lib/Drupal/Core/Extension/ModuleHandler.php Gets the human readable name of a given module.
ModuleHandler::hasImplementations function core/lib/Drupal/Core/Extension/ModuleHandler.php Determines whether there are implementations of a hook.
ModuleHandler::invoke function core/lib/Drupal/Core/Extension/ModuleHandler.php Invokes a hook in a particular module.
ModuleHandler::invokeAll function core/lib/Drupal/Core/Extension/ModuleHandler.php Invokes a hook in all enabled modules that implement it.
ModuleHandler::invokeAllDeprecated function core/lib/Drupal/Core/Extension/ModuleHandler.php Invokes a deprecated hook in all enabled modules that implement it.
ModuleHandler::invokeAllWith function core/lib/Drupal/Core/Extension/ModuleHandler.php Executes a callback for each implementation of a hook.
ModuleHandler::invokeDeprecated function core/lib/Drupal/Core/Extension/ModuleHandler.php Invokes a deprecated hook in a particular module.
ModuleHandler::isLoaded function core/lib/Drupal/Core/Extension/ModuleHandler.php Returns whether all modules have been loaded.
ModuleHandler::legacyInvoke function core/lib/Drupal/Core/Extension/ModuleHandler.php Calls a function called $module . '_' . $hook if one exists.
ModuleHandler::load function core/lib/Drupal/Core/Extension/ModuleHandler.php Includes a module's .module file.
ModuleHandler::loadAll function core/lib/Drupal/Core/Extension/ModuleHandler.php Loads all enabled modules.
ModuleHandler::loadAllIncludes function core/lib/Drupal/Core/Extension/ModuleHandler.php Loads an include file for each enabled module.
ModuleHandler::loadInclude function core/lib/Drupal/Core/Extension/ModuleHandler.php Loads a module include file.
ModuleHandler::moduleExists function core/lib/Drupal/Core/Extension/ModuleHandler.php Determines whether a given module is enabled.
ModuleHandler::reload function core/lib/Drupal/Core/Extension/ModuleHandler.php Reloads all enabled modules.
ModuleHandler::reOrderModulesForAlter function core/lib/Drupal/Core/Extension/ModuleHandler.php Reorder modules for alters.
ModuleHandler::resetImplementations function core/lib/Drupal/Core/Extension/ModuleHandler.php Resets the cached list of hook implementations.
ModuleHandler::setModuleList function core/lib/Drupal/Core/Extension/ModuleHandler.php Sets an explicit list of currently active modules.
ModuleHandler::triggerDeprecationError function core/lib/Drupal/Core/Extension/ModuleHandler.php Triggers an E_USER_DEPRECATED error if any module implements the hook.
ModuleHandler::triggerErrorForDuplicateAlterHookListener function core/lib/Drupal/Core/Extension/ModuleHandler.php Triggers an error on duplicate alter listeners.
ModuleHandler::writeCache function core/lib/Drupal/Core/Extension/ModuleHandler.php Does not do anything.
ModuleHandler::__construct function core/lib/Drupal/Core/Extension/ModuleHandler.php Constructs a ModuleHandler object.
ModuleHandlerDeprecatedHookTest class core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookTest.php Test whether deprecated hook invocations trigger errors.
ModuleHandlerDeprecatedHookTest.php file core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookTest.php
ModuleHandlerDeprecatedHookTest::$modules property core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookTest.php Modules to install.
ModuleHandlerDeprecatedHookTest::testAlterDeprecated function core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookTest.php @covers ::alterDeprecated[[api-linebreak]]
ModuleHandlerDeprecatedHookTest::testInvokeAllDeprecated function core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookTest.php @covers ::invokeAllDeprecated[[api-linebreak]]
ModuleHandlerDeprecatedHookTest::testInvokeDeprecated function core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookTest.php @covers ::invokeDeprecated[[api-linebreak]]
ModuleHandlerDeprecatedHookUnimplementedTest class core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookUnimplementedTest.php Test whether unimplemented deprecated hook invocations trigger errors.
ModuleHandlerDeprecatedHookUnimplementedTest.php file core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookUnimplementedTest.php
ModuleHandlerDeprecatedHookUnimplementedTest::testUnimplementedHooks function core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookUnimplementedTest.php @covers ::alterDeprecated[[api-linebreak]]
@covers ::invokeAllDeprecated[[api-linebreak]]
@covers ::invokeDeprecated[[api-linebreak]]
ModuleHandlerInterface interface core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Interface for classes that manage a set of enabled modules.
ModuleHandlerInterface.php file core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php
ModuleHandlerInterface::addModule function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Adds a module to the list of currently active modules.
ModuleHandlerInterface::addProfile function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Adds an installation profile to the list of currently active modules.
ModuleHandlerInterface::alter function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Passes alterable variables to specific hook_TYPE_alter() implementations.
ModuleHandlerInterface::alterDeprecated function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Passes alterable variables to deprecated hook_TYPE_alter() implementations.
ModuleHandlerInterface::buildModuleDependencies function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Determines which modules require and are required by each module.
ModuleHandlerInterface::getHookInfo function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Retrieves a list of hooks that are declared through hook_hook_info().
ModuleHandlerInterface::getModule function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Returns a module extension object from the currently active modules list.
ModuleHandlerInterface::getModuleDirectories function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Returns an array of directories for all enabled modules.
ModuleHandlerInterface::getModuleList function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Returns the list of currently active modules.
ModuleHandlerInterface::getName function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Gets the human readable name of a given module.
ModuleHandlerInterface::hasImplementations function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Determines whether there are implementations of a hook.
ModuleHandlerInterface::invoke function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Invokes a hook in a particular module.
ModuleHandlerInterface::invokeAll function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Invokes a hook in all enabled modules that implement it.
ModuleHandlerInterface::invokeAllDeprecated function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Invokes a deprecated hook in all enabled modules that implement it.
ModuleHandlerInterface::invokeAllWith function core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php Executes a callback for each implementation of a hook.

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