Drupal:提交表单时运行自定义代码
在 Drupal 中提交表单时如何运行特定代码?
我正在使用 hook_form_alter 来编辑表单,但实际上我需要收集用户插入的数据并在用户单击“保存/注册”等时运行代码,
谢谢
how can I run specific code when a form is submitted in Drupal ?
I'm using hook_form_alter to edit the form, but I actually need to collect the data inserted by user and run code when the user click on "Save / Register" etc
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以向提交数组添加回调。事情是这样的:
You can add callbacks to the submit array. It goes something like this:
尝试添加以下功能:
对我有用。希望它有帮助:)
Try adding the following function:
worked for me. Hope it helps :)