mail_edit.logintoboggan.inc in Mail Editor 7
A sample implementation of Mail Editor hooks for Logintoboggan module.
Since the mail_edit module is arranged around the full key (including the calling module) it can only support user_ keys at this time.
However, the Logintoboggan module (http://drupal.org/project/logintoboggan) replaces many of the mail messages and sends them itself. As a result, mail_edit is unable to deal with them.
This simple file allows logintoboggan to work. I think a more generic approach would work better (not keying things to the full mailkey ('module' + '_' + 'key') but rather on the key itself.
File
modules/mail_edit.logintoboggan.incView source
<?php
/**
 * @file
 * A sample implementation of Mail Editor hooks for Logintoboggan module.
 *
 * Since the mail_edit module is arranged around the full key (including the calling module)
 * it can only support user_ keys at this time.
 *
 * However, the Logintoboggan module (http://drupal.org/project/logintoboggan) replaces many of the
 * mail messages and sends them itself. As a result, mail_edit is unable to deal with them.
 *
 * This simple file allows logintoboggan to work. I think a more generic approach would
 * work better (not keying things to the full mailkey ('module' + '_' + 'key') but rather
 * on the key itself.
 *
 */
/**
 * Implements hook_mailkeys().
 *
 * @return array|null
 */
function logintoboggan_mailkeys() {
  if (module_exists('logintoboggan')) {
    return user_mailkeys() + array(
      'logintoboggan_resend_validation' => t('Resent validation message'),
    );
  }
  return NULL;
}
/**
 * Implements hook_mail_edit_text().
 *
 * @param string $mailkey
 * @param string $language
 *
 * @return array
 */
function logintoboggan_mail_edit_text($mailkey, $language) {
  return user_mail_edit_text($mailkey, $language);
}
/**
 * Implements hook_mail_edit_token_types().
 *
 * @param string $mailkey
 *
 * @return array
 */
function logintoboggan_mail_edit_token_types($mailkey) {
  return user_mail_edit_token_types($mailkey);
}Functions
| Name   | Description | 
|---|---|
| logintoboggan_mailkeys | Implements hook_mailkeys(). | 
| logintoboggan_mail_edit_text | Implements hook_mail_edit_text(). | 
| logintoboggan_mail_edit_token_types | Implements hook_mail_edit_token_types(). | 
