Drupal 7:Webform 结果 -> 提交:如何在此处添加或修改列
当我点击“结果”,然后点击“提交”时,我看到以下列:
#, Submitted, User, Ip address, Operations
您能帮我从此处的表单中添加一些列吗?
或者 如果有办法可以删除整个页面/选项? (我知道我可以删除 hook_alter_menu() 并删除菜单项,但它会显示单击结果选项卡时的页面,因为它是默认视图)
您能帮我删除整个页面或修改它吗?
When I click on "Results" and then "Submissions" I see the following columns:
#, Submitted, User, Ip address, Operations
Can you help me add a few columns from my form here?
or
If there is a way I can remove the whole page/option? (I know I can remove the hook_alter_menu() and remove the menu item but it shows the page on clicking on results tab as it is the default view)
Can you please help me in removing the whole page or modifying it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
webform 模块很好地使用了 Drupal API。因此,您可以在流程中使用一个主题函数 (webform_theme)。
在这个 hook_theme() 实现中,您找到并与这两个键关联的数组:
您现在所要做的就是使用您自己的 hook_theme 为标题和行提供您自己的实现,然后就完成了。
Well the webform module uses the Drupal API really well. So there is a theme function that (webform_theme) that you might use for your process.
Inside this hook_theme() implementation you find and associated array with these two keys:
All you have to do now is provide your own implementations for the header and rows using your own hook_theme and you are done.