function pet_hook_info in Previewable email templates 8.4
Same name and namespace in other branches
- 8 pet.module \pet_hook_info()
- 8.3 pet.module \pet_hook_info()
Implements hook_hook_info().
File
- ./
pet.module, line 390 - Previewable Email Template module.
Code
function pet_hook_info() {
$hooks = [
'pet_substitutions_alter',
];
$info = [
'group' => 'pet',
];
return array_fill_keys($hooks, $info);
}