You are here

function coffee_hook_info in Coffee 7.2

Same name and namespace in other branches
  1. 8 coffee.module \coffee_hook_info()
  2. 6 coffee.module \coffee_hook_info()

Implements hook_hook_info().

File

./coffee.module, line 72
Coffee primary module file

Code

function coffee_hook_info() {
  $hooks = array(
    'coffee_commands' => array(
      'group' => 'coffee',
    ),
  );
  return $hooks;
}