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

2021-12-29 00:00:00 php drupal drupal-fapi drupal-alter

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

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]

干杯!

推荐答案

最简单的选择可能是使用 hook_form_alter 在表单上.

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

相关文章