Drupal:在网络表单中的提交按钮上方添加免责声明文本

发布于 2024-08-28 23:49:49 字数 207 浏览 6 评论 0原文

有没有一种简单的方法来修改 webform-form-tpl.php 模板以在 Drupal Web 表单中的提交按钮上方显示免责声明文本?我可以在按钮下方添加文本,但不知道如何将按钮与其他元素分开以在它们之间添加文本,即:

[form-elements]
[disclaimer text]
[submit button]

干杯!

Is there an easy-ish way to modify the webform-form-tpl.php template to show disclaimer text above the submit button in a Drupal webform? I can add text below the button, but do not know how to split up the button from the other elements to add text between them, ie:

[form-elements]
[disclaimer text]
[submit button]

Cheers!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

不及他 2024-09-04 23:49:49

最简单的选项可能是使用 hook_form_alter< 将文本作为标记表单项插入/code>在表单上。

The easiest option is probably is insert the text as a markup form item using hook_form_alter on the form.

仅此而已 2024-09-04 23:49:49

这对我有用:

$form['actions']['submit']['#prefix'] = 'Disclaimer...';

This worked for me :

$form['actions']['submit']['#prefix'] = 'Disclaimer...';
撧情箌佬 2024-09-04 23:49:49

这并不真正属于主题层;这是内容。您可以将免责声明作为标记组件添加到 Web 表单的末尾,它应该出现在其他 Web 表单组件之后和提交按钮之前,如您所愿。

This doesn't really belong in the theme layer; it's content. You can add the disclaimer as a markup component to the end of the webform and it should appear after the other webform components and before the submit button like you want.

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