You are here

function variable_realm_hook_info in Variable 7

Implements hook_hook_info().

This function only specifies hooks which are NOT invoked during bootstrap. See variable_realm.api.php for a complete list of hooks.

File

variable_realm/variable_realm.module, line 66
Variable API module - Realms

Code

function variable_realm_hook_info() {
  $hooks['variable_realm_info'] = array(
    'group' => 'variable',
  );
  $hooks['variable_realm_info_alter'] = array(
    'group' => 'variable',
  );
  return $hooks;
}