【发布时间】:2010-03-24 01:11:21
【问题描述】:
我想对自定义 Drupal 表单提供附加说明,类似于 hook_help,但位于表单底部。有没有可用的函数或钩子?
【问题讨论】:
标签: drupal drupal-forms
我想对自定义 Drupal 表单提供附加说明,类似于 hook_help,但位于表单底部。有没有可用的函数或钩子?
【问题讨论】:
标签: drupal drupal-forms
如果你在表单中添加一个没有类型的元素,它的值将在页面上显示为 HTML。
见here
$form['contact_information'] = array(
'#value' => t('You can leave us a message using the contact form below.'),
);
【讨论】:
主题形式:http://www.lullabot.com/articles/modifying-forms-drupal-5-and-6
您可以 cck 或其他模块...
【讨论】: