You are here

function user_registrationpassword_mail_edit_token_types in User registration password 7

Same name and namespace in other branches
  1. 6 user_registrationpassword.module \user_registrationpassword_mail_edit_token_types()

Implements hook_mail_edit_token_types().

Returns a simple array for constructing the mail / tokens.

See also

user_registrationpassword_mail()

_user_registrationpassword_mail_text()

user_registrationpassword_mail_tokens()

user_registrationpassword_mailkeys()

user_registrationpassword_mail_edit_text()

File

./user_registrationpassword.module, line 470
Enables password creation on registration form.

Code

function user_registrationpassword_mail_edit_token_types($mailkey) {
  return array(
    'user',
  );
}