You are here

function features_hook_info in Features 7

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

Implements hook_hook_info().

File

./features.module, line 935
Module file for the features module, which enables the capture and management of features in Drupal. A feature is a collection of Drupal entities which taken together statisfy a certain use-case.

Code

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