Drupal 7 hook_menu复选框问题

问题描述 投票:0回答:1

我正在尝试组建一个具有自己的配置页面的模块。为此,我使用以下代码作为我的菜单页面回调:

function webform_customizations_customize() {
    $form = array();
  // Text field for the e-mail subject.
  $form['webform_customizations']['user_warn_e-mail_subject'] = array(

        '#type' => 'textfield',
        '#title' => t('Warning e-mail subject'),
        '#description' => t('The subject of the e-mail which will be sent 
    to users.'),
          '#size' => 40,
          '#maxlength' => 120,
          '#required' => TRUE,
    );
    $options = array('A', 'B', 'C');
    $form['test'] = array(
        '#type' => 'radios',
        '#options' => array(
                'one' => t('one'),
                'two' => t('two'),
            ),
        '#title' => t('roles that should see a minimal webforms setting area'),
        '#title_display' => t('testing'),
    );
  $form['high_school']['tests_taken'] = array(

    '#type' => 'checkboxes', 

    '#options' => drupal_map_assoc(array(t('SAT'), t('ACT'))), 
    '#title' => t('What standardized tests did you take?'),
    '#states' => array(
      'visible' => array(// action to take.
        ':input[name="student_type"]' => array('value' => 'high_school'),
      ),
    ),
  );
return $form;
}

我的问题是我尝试显示复选框失败。第一个字段成功显示文本字段。但接下来的两个是从未在我的配置页面上显示的复选框 - 并且tests_taken复选框代码直接从this drupal doc page解除,没有任何修改。

我尝试了一个复选框,这是有效的。

drupal-7 checkbox hook-menu
1个回答
0
投票

您应该已经阅读了与您所采用的代码一起的注释:

    // This #states rule says that this checkboxes array will be visible only
    // when $form['student_type'] is set to t('High School').
    // It uses the jQuery selector :input[name=student_type] to choose the
    // element which triggers the behavior, and then defines the "High School"
    // value as the one that triggers visibility. 

只需删除#states元素,它应该可以工作。快乐的drupaling!

© www.soinside.com 2019 - 2024. All rights reserved.