Drupal Forms - 设置默认值
我正在使用 Drupal 6 的 webform 模块,并且希望在创建 webform 时为其确认消息设置默认值。每当用户创建新的网络表单时,我是否必须创建自己的模块来设置此表单值?或者我是否必须实现一个特殊的钩子来查找何时创建网络表单?
I am using the webform module for Drupal 6 and would like to set a default value for the confirmation message of the webform whenever it is created. Would I have to create my own module to set this form value whenever a user creates a new webform? Or would I have to implement a special hook to look for when a webform is created?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您将需要使用以下内容:
You going to want to use the following:
@esafwan ..我不确定这是否对您解决隐藏字段问题有帮助,但是
我找到了默认变量值的链接 http://drupal.org/node/296453
所以我能够在已经存在的网络表单中使用默认值%request[key]创建一个隐藏字段并且工作完美..
@esafwan .. I'm not sure whether this shall help in your case with the hidden fields issue but
I found this link for default variable values http://drupal.org/node/296453
so I was able to create a hidden field in my already existent webform with default value %request[key] and worked perfectly ..