hook_mailkeys

Definition

hook_mailkeys()
subscriptions_og/docs/hooks.php, line 577

Description

Provide mailkeys definitions.

The mailkeys hook will fire when mail_edit constructs overview of mail templates.

See also

mail_edit_overview()

Return value

A valid array of mailkeys.

Related topics

Namesort iconDescription
HooksAllow modules to interact with the Drupal core.

Code

<?php
function hook_mailkeys() {
  return array('module-key1', 'module-key2');
}
?>