如何以编程方式获取 drupal webform 模块提交的值?
我想使用 Webform 模块 API 获取 Webform 提交的值。
我怎样才能做到这一点?
I want to get the Webform submitted value using Webform module API.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我有这些关于 Webform 挂钩
使用 Webform API(仅限版本 3.x) 的
链接,其中包含这些链接
http://drupalcode.org/project/webform.git/blob/HEAD:/webform_hooks.php
http://api.lullabot.com/file/contrib/webform/webform_hooks.php
I've got these link regarding webform hooks
Working with the Webform API (version 3.x only)
that contain these links
http://drupalcode.org/project/webform.git/blob/HEAD:/webform_hooks.php
http://api.lullabot.com/file/contrib/webform/webform_hooks.php
自定义编码:添加高级验证或提交代码 -
通过 print_r 或 dsm(开发模块)调查 $form_state 结构,并在
mywebform_extra_submit_44
函数中找到您提交的数据。Custom coding: Adding advanced validation or submit code -
Investigate $form_state structure via print_r or dsm (devel module) and find your submitted data in
mywebform_extra_submit_44
function.这是我的做法,表格只是一个电子邮件地址。
节点和提交都是 stdClass 对象。
(在 drupal 6 中完成)
Here is how I did it, the form was just an email address.
Both node and submission are stdClass objects.
(Done in drupal 6)