You are here

function coffee_hook_info in Coffee 8

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

Implements hook_hook_info().

File

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

Code

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