function hook_hook_info_alter

Alter information from hook_hook_info().

Parameters

$hooks: Information gathered by module_hook_info() from other modules' implementations of hook_hook_info(). Alter this array directly. See hook_hook_info() for information on what this may contain.

Related topics

File

drupal/modules/system/system.api.php, line 55
Hooks provided by Drupal core and the System module.

Code

function hook_hook_info_alter(&$hooks) {

  // Our module wants to completely override the core tokens, so make
  // sure the core token hooks are not found.
  $hooks['token_info']['group'] = 'mytokens';
  $hooks['tokens']['group'] = 'mytokens';
}