错误消息没有显示在drupal 6中的自定义表单模板中?

时间:2011-12-20 09:16:47

标签: drupal drupal-6 drupal-modules drupal-theming

我是使用template.php

中的以下函数完成的
function mytheme_theme() {
  return array(
    'nsa_create_form' => array(
       'arguments' => array('form' => NULL),
       'template' => 'nsa-create',
       ),
   );
}

并使用以下代码行添加了nsa-create.tpl.php

<?php if ($show_messages && $messages): print $messages; endif; ?>

<?= drupal_render($form['start_date']) ?>
<?= drupal_render($form['end_date']) ?>
<?= drupal_render($form['confirm_dates']) ?>
<?= drupal_render($form['name']) ?>
<?= drupal_render($form['emp_id']) ?>
<?= drupal_render($form['client']) ?>
<?= drupal_render($form['designation']) ?>
<?= drupal_render($form['manager']) ?>
<?= drupal_render($form['competency']) ?>
<?= drupal_render($form['wrapper_nsa']) ?>
<?= drupal_render($form['submit']) ?>

正确呈现,但不显示错误/验证消息,无效字段没有红色边框。

1 个答案:

答案 0 :(得分:1)

你的page.tpl.php有吗

<?php print $messages; ?>