module_invoke()
drupal/includes/module.inc, line 513
Invoke a hook in a particular module.
$module The name of the module (without the .module extension).
$hook The name of the hook to invoke.
... Arguments to pass to the hook implementation.
The return value of the hook implementation.
| Name | Description |
|---|---|
| Hooks | Allow modules to interact with the Drupal core. |
function module_invoke() {
$args = func_get_args();
$module = $args[0];
$hook = $args[1];
unset($args[0], $args[1]);
if (module_hook($module, $hook)) {
return call_user_func_array($module . '_' . $hook, $args);
}
}