You are here

function pet_hook_info in Previewable email templates 8.3

Same name and namespace in other branches
  1. 8.4 pet.module \pet_hook_info()
  2. 8 pet.module \pet_hook_info()

Implements hook_hook_info().

File

./pet.module, line 14
Previewable Email Template module.

Code

function pet_hook_info() {
  $hooks = [
    'pet_substitutions_alter',
  ];
  $info = [
    'group' => 'pet',
  ];
  return array_fill_keys($hooks, $info);
}