沃梦达 / 编程问答 / php问题 / 正文

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

Drupal: adding disclaimer text above the submit button in a webform(Drupal:在网络表单中的提交按钮上方添加免责声明文本)

本文介绍了Drupal:在网络表单中的提交按钮上方添加免责声明文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有一种简单的方法可以修改 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.

这篇关于Drupal:在网络表单中的提交按钮上方添加免责声明文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

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

基础教程推荐