我正在 Drupal 7 中创建一个站点。我通过管理员批准使用用户注册。管理员批准后,我想在用户邮件中发送用户密码,但要发送用户名,并且只有“您的密码”静态文本。
任何人都可以帮助我。
提前致谢
我正在 Drupal 7 中创建一个站点。我通过管理员批准使用用户注册。管理员批准后,我想在用户邮件中发送用户密码,但要发送用户名,并且只有“您的密码”静态文本。
任何人都可以帮助我。
提前致谢
/**
* Implements hook_token_info().
* */
function modulename_token_info() {
$info['tokens']['user']['password'] = array(
'name' => t('Password'),
'description' => t('The password by the user'),
);
return $info;
}
/**
* Implements hook_tokens().
* */
function modulename_tokens($type, $tokens, array $data = array(), array $options = array()) {
$replacements = array();
$url_options = array('absolute' => TRUE);
if (isset($options['language'])) {
$url_options['language'] = $options['language'];
}
if ($type == 'user' && !empty($data['user'])) {
$account = $data['user'];
foreach ($tokens as $name => $original) {
switch ($name) {
case 'password':
$replacements[$original] = $account->password;
break;
}
}
}
return $replacements;
}
之后,/admin/config/people/accounts
您将在您的帐户中找到新用户密码 [user:password] 的令牌