gpt4 book ai didi

drupal_set_message drupal

转载 作者:行者123 更新时间:2023-12-02 22:08:07 24 4
gpt4 key购买 nike

我在 drupal 6 中创建了一个重置​​密码表单。提交时我必须重定向到显示 Drupal 消息的同一页面。

我写了以下内容:

  global $language;

$account = $form_state['values']['account'];

_user_mail_notify('password_reset', $account, $language);


watchdog('user', 'Password reset instructions mailed to %name at %email.', array('%name' => $account->name, '%email' => $account->mail));

drupal_set_message(t('Further instructions have been sent to your e-mail address.'));

$form_state['redirect'] = 'user/password';
return;

}

但我的邮件代码工作正常,但我的消息没有显示。

最佳答案

尝试此代码,它会在同一页面上重定向您并显示消息...

$msg = "Further instructions have been sent to your e-mail address.";
drupal_set_message($msg, $type = 'status');
drupal_goto('user/password');

关于drupal_set_message drupal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15810533/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com