Drupal 7 hook_menu复选框问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal 7 hook_menu复选框问题相关的知识,希望对你有一定的参考价值。
我正在尝试组建一个具有自己的配置页面的模块。为此,我使用以下代码作为我的菜单页面回调:
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解除,没有任何修改。
我尝试了一个复选框,这是有效的。
答案
您应该已经阅读了与您所采用的代码一起的注释:
// 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!
以上是关于Drupal 7 hook_menu复选框问题的主要内容,如果未能解决你的问题,请参考以下文章