function mail_edit_hook_info in Mail Editor 7
Implements hook_hook_info().
Loads the third-party support include so that their hooks are registered.
Allow adopters to place their hook implementations in either their main module or in a module.mail_edit.inc file.
File
- ./
mail_edit.module, line 162 - Mail Editor module.
Code
function mail_edit_hook_info() {
_mail_edit_include();
$hooks = array(
'mailkeys',
'mail_edit_text',
'mail_edit_token_types',
);
return array_fill_keys($hooks, array(
'group' => 'mail_edit',
));
}