在 form_alter 中提交操作后

发布于 2024-10-14 02:30:15 字数 177 浏览 2 评论 0原文

我需要在创建用户后在表中插入数据。我想使用 hook_form_alter()$form_id == "user_register" 但我不知道怎么说“创建用户后,执行此操作”。

我怎样才能在hook_form_alter()中做到这一点?

i need to insert data in my tables after user creation. I think to use hook_form_alter() for $form_id == "user_register" but I don't know how to say "after you created user, do this."

How can I do it in hook_form_alter()?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海螺姑娘 2024-10-21 02:30:15

您可以向这样的表单添加自定义提交处理程序。

function hook_form_user_register_alter(&$form, &$form_state) {
    // ...
    $form['#submit'][] = 'yourModule_user_register_submit';
}

function yourModule_user_register_submit($form, &$form_state) {
    // do what you want to do after registration
}

我还建议使用 Drupal 的 Triggers &实现这一目标的行动。据我所知,用户注册后触发的触发器之一存在错误。不知道是否已修复。

You can add custom submit handler to forms like this.

function hook_form_user_register_alter(&$form, &$form_state) {
    // ...
    $form['#submit'][] = 'yourModule_user_register_submit';
}

function yourModule_user_register_submit($form, &$form_state) {
    // do what you want to do after registration
}

I'd also recommend to use Drupal's Triggers & Actions to achieve this. AFAIK there was a bug with one of the triggers that fire after user registration. Don't know if that has been fixed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文