public function ModuleHandler::invoke in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::invoke()
Invokes a hook in a particular module.
Parameters
string $module: The name of the module (without the .module extension).
string $hook: The name of the hook to invoke.
...: Arguments to pass to the hook implementation.
Return value
mixed The return value of the hook implementation.
Overrides ModuleHandlerInterface::invoke
File
- core/
lib/ Drupal/ Core/ Extension/ ModuleHandler.php, line 377 - Contains \Drupal\Core\Extension\ModuleHandler.
Class
- ModuleHandler
- Class that manages modules in a Drupal installation.
Namespace
Drupal\Core\ExtensionCode
public function invoke($module, $hook, array $args = array()) {
if (!$this
->implementsHook($module, $hook)) {
return;
}
$function = $module . '_' . $hook;
return call_user_func_array($function, $args);
}