You are here

function fences_hook_info in Fences 7

Same name and namespace in other branches
  1. 7.2 fences.module \fences_hook_info()

Implements hook_hook_info().

File

./fences.module, line 26
Fences is a module providing configurable field wrappers.

Code

function fences_hook_info() {
  return array(
    'fences_suggestion_info' => array(
      'group' => 'fences',
    ),
    'fences_suggestion_info_alter' => array(
      'group' => 'fences',
    ),
  );
}