You are here

function helper_hook_info_alter in Helper 7

Implements hook_hook_info_alter().

File

./helper.module, line 41

Code

function helper_hook_info_alter(&$info) {
  module_load_include('inc', 'helper', 'helper.hook');
  $groups = _helper_hook_info_groups();
  foreach ($groups as $group => $hooks) {
    $info += array_fill_keys($hooks, array(
      'group' => $group,
    ));
  }
}