You are here

function features_hook_info in Features 7.2

Same name and namespace in other branches
  1. 7 features.module \features_hook_info()

Implements hook_hook_info().

File

./features.module, line 1323
Main *.module file for the 'features' module.

Code

function features_hook_info() {
  $hooks = array(
    'features_api',
    'features_pipe_alter',
    'features_export_alter',
    'features_export_options_alter',
  );
  return array_fill_keys($hooks, array(
    'group' => 'features',
  ));
}