public function ModuleHandlerInterface::invokeAll

Invokes a hook in all enabled modules that implement it.

Parameters

string $hook: The name of the hook to invoke.

...: Arguments to pass to the hook.

Return value

array An array of return values of the hook implementations. If modules return arrays from their implementations, those are merged into one array.

1 method overrides ModuleHandlerInterface::invokeAll()

File

drupal/core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php, line 212
Contains Drupal\Core\Extension\ModuleHandlerInterface.

Class

ModuleHandlerInterface
Interface for classes that manage a set of enabled modules.

Namespace

Drupal\Core\Extension

Code

public function invokeAll($hook, $args = array());