You are here

function user_registrationpassword_mailkeys in User registration password 6

Same name and namespace in other branches
  1. 7 user_registrationpassword.module \user_registrationpassword_mailkeys()

Implements hook_mailkeys().

Return value

array

File

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

Code

function user_registrationpassword_mailkeys() {
  return array(
    'register' => t('Welcome message when user self-registers and sets password during registration'),
  );
}