function ModuleHandler::implementsHook
Same name and namespace in other branches
- 8.9.x core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::implementsHook()
Returns whether a given module implements a given hook.
Parameters
string $module: The name of the module (without the .module extension).
string $hook: The name of the hook (e.g. "help" or "menu").
Return value
bool TRUE if the module is both installed and enabled, and the hook is implemented in that module.
Overrides ModuleHandlerInterface::implementsHook
File
-
core/
lib/ Drupal/ Core/ Extension/ ModuleHandler.php, line 394
Class
- ModuleHandler
- Class that manages modules in a Drupal installation.
Namespace
Drupal\Core\ExtensionCode
public function implementsHook($module, $hook) {
@trigger_error('ModuleHandlerInterface::implementsHook() is deprecated in drupal:9.4.0 and is removed from drupal:10.0.0. Instead you should use ModuleHandlerInterface::hasImplementations() with the $modules argument. See https://www.drupal.org/node/3000490', E_USER_DEPRECATED);
return $this->hasImplementations($hook, $module);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.