You are here

function rpt_token_info in Registration Password Token 7

Same name and namespace in other branches
  1. 8 rpt.module \rpt_token_info()

Implements hook_token_info().

File

./rpt.module, line 60

Code

function rpt_token_info() {
  $info['tokens']['user']['password'] = array(
    'name' => t('User password'),
    'description' => t('Provides user password. May be used only during registration.'),
  );
  return $info;
}