是否可以将HTML表单传输到webform? Drupal的

时间:2013-05-24 11:32:17

标签: html css drupal drupal-forms drupal-webform

我已经制作并设计了一个HTML表单,是否可以将其放入Drupal的webform中,而无需再次创建所有内容?我的意思是,是否可以采用ID和类来使webform模块提交结果?

1 个答案:

答案 0 :(得分:1)

答案好坏参半。您可以重复使用已经在html表单中完成的样式,但这并不像在drupal中复制粘贴html表单那么简单。

为此需要使用drupal form api

Drupal 6表格示例:http://drupal.org/node/717734
Drupal 7形式示例:http://drupal.org/node/717740

Drupal 6字段示例:

$form['title'] = array(
  '#type' => 'textfield',
  '#title' => t('Page title'),
  '#attributes' => array(
    'class' => 'page-title', 
  ),
);

Drupal 7字段示例:

$form['title'] = array(
  '#type' => 'textfield',
  '#title' => t('Page title'),
  '#attributes' => array(
    'class' => array('page-title'), 
  ),
);