Drupal 7:Webform 结果 -> 提交:如何在此处添加或修改列

发布于 2024-11-11 08:40:45 字数 261 浏览 0 评论 0原文

当我点击“结果”,然后点击“提交”时,我看到以下列:

#, 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 技术交流群。

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

发布评论

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

评论(1

七度光 2024-11-18 08:40:45

webform 模块很好地使用了 Drupal API。因此,您可以在流程中使用一个主题函数 (webform_theme)。

在这个 hook_theme() 实现中,您找到并与这两个键关联的数组:

'webform_results_submissions_header' => array(
  'variables' => array('node' => NULL),
  'file' => 'includes/webform.report.inc',
),
'webform_results_submissions' => array(
  'render element' => 'element',
  'template' => 'templates/webform-results-submissions',
  'file' => 'includes/webform.report.inc',
),

您现在所要做的就是使用您自己的 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:

'webform_results_submissions_header' => array(
  'variables' => array('node' => NULL),
  'file' => 'includes/webform.report.inc',
),
'webform_results_submissions' => array(
  'render element' => 'element',
  'template' => 'templates/webform-results-submissions',
  'file' => 'includes/webform.report.inc',
),

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.

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