You are here

private function ModuleImplements::moduleHookInfo in X Autoload 7.5

Replicates module_hook_info() for some known hooks.

Return value

array An associative array whose keys are hook names and whose values are an associative array containing a group name. The structure of the array is the same as the return value of hook_hook_info().

See also

hook_hook_info()

1 call to ModuleImplements::moduleHookInfo()
ModuleImplements::discoverImplementations in tests/src/VirtualDrupal/ModuleImplements.php

File

tests/src/VirtualDrupal/ModuleImplements.php, line 193

Class

ModuleImplements

Namespace

Drupal\xautoload\Tests\VirtualDrupal

Code

private function moduleHookInfo() {

  // No core modules implement hook_hook_info().
  return array();
}