我想添加请求新密码链接

时间:2015-09-29 05:35:30

标签: drupal-7

我想在登录块中添加请求新密码链接,我正在使用drupal7请帮帮我,我无法在哪里找到此登录块?提前感谢

1 个答案:

答案 0 :(得分:0)

在template.php文件中实现此挂钩

/**
* Implements hook_form_alter()
*/
function hook_form_alter(&$form, &$form_state, $form_id) {
  switch ($form_id) {
    case 'user_login_block':
      $form['link'] = array('#markup' => l(t('Request new password'),'path'));
    break;
  }
}