如何在div中包装webform生成的表单?

时间:2012-05-04 10:29:16

标签: drupal drupal-6 drupal-theming

我现在正在使用Drupal。是否可以将社区webform模块生成的表单包装在div中?任何主题方法或钩点要做到这一点?

1 个答案:

答案 0 :(得分:0)

您可以通过hook_page_alter在表单周围添加div,例如:

function hook_page_alter(&$page) {
  // Add help text to the user login block.
  $page['content']['...']['form'] = array(
    '#prefix' => '<div>', 
    '#suffix' => '</div>',
  );
}