将类添加到表单选择选项项


19

如何在没有JS的情况下将类添加到表单选项标签?目前,在Form API中,我可以像这样传递键控数组

array(
  '0' => 'option 0',
  '1' => 'option 1',
)

我会得到这样的html

<option value="0">option 0</option>
<option value="1">option 1</option>

有没有办法做这样的事情:

array(
  array(
    'value' => 0,
    'text' => 'option 0',
    'class' => 'bob 0',
  ),
  array(
    'value' => 1,
    'text' => 'option 1',
    'class' => 'bob 1',
  ),
)

然后得到这个

<option value="0" class="bob 0">option 0</option>
<option value="1" class="bob 1">option 1</option>

我喜欢这个问题。为主题正义投票。
Lester Peabody

这还是drupal 7的问题吗?
2015年

Answers:


8

不幸的是,当前使用Form API并不是很容易。

添加此功能(一直追溯到2008年)存在一个问题,从理论上讲,您可以执行以下操作:

$form['optiontest'] = array(
  '#type' => 'select',
  '#title' => t('Option test'),
  '#options' => array(
    array(
      '#return_value' => 0,
      '#value' => t('First option'),
      '#attributes' => array('class' => 'first', 'title' => t('First option')),
    ),
    array(
      '#value' => t('Option group'),
      '#attributes' => array('class' => 'group', 'title' => t('This is an optgroup')),
      '#options' => array(
        array('#return_value' => 2, '#value' => t('1st sub-option')),
        array('#return_value' => 4, '#value' => t('2nd sub-option')),
      ),
    ),
  ),
);

但不幸的是,此问题目前仅附带失败的补丁程序。

目前,我唯一想到的方法是将一个#process函数添加到select元素,并在每个选项单独分解时将类添加到每个选项。


5

因此,我无法完成完全灵活的选项,但是这是一种options基于选项值向标签添加类的方法。它可以工作,但覆盖了theme_select使用我自己的版本的功能form_select_options

// theme_select
function THEME_select($variables) {
  $element = $variables['element'];
  element_set_attributes($element, array('id', 'name', 'size'));
  _form_set_class($element, array('form-select'));
  return '<select' . drupal_attributes($element['#attributes']) . '>' . THEME_form_select_options($element) . '</select>';
}

/**
 *
 * @param type $element
 * @param type $choices
 * @return string 
 */
function THEME_form_select_options($element, $choices = NULL) {
  if (!isset($choices)) {
    $choices = $element['#options'];
  }
  // array_key_exists() accommodates the rare event where $element['#value'] is NULL.
  // isset() fails in this situation.
  $value_valid = isset($element['#value']) || array_key_exists('#value', $element);
  $value_is_array = $value_valid && is_array($element['#value']);
  $options = '';
  foreach ($choices as $key => $choice) {
    if (is_array($choice)) {
      $options .= '<optgroup label="' . $key . '">';
      $options .= THEME_form_select_options($element, $choice);
      $options .= '</optgroup>';
    }
    elseif (is_object($choice)) {
      $options .= THEME_form_select_options($element, $choice->option);
    }
    else {
      $key = (string) $key;
      if ($value_valid && (!$value_is_array && (string) $element['#value'] === $key || ($value_is_array && in_array($key, $element['#value'])))) {
        $selected = ' selected="selected"';
      }
      else {
        $selected = '';
      }
      $options .= '<option class="' . drupal_clean_css_identifier($key) . '"  value="' . check_plain($key) . '"' . $selected . '>' . check_plain($choice) . '</option>';
    }
  }
  return $options;
}

0

实际上,有一种方法可以覆盖各个option项目。但是,我不确定它是否可以在Drupal 7中使用。

这是一些在Drupal 8中可用的代码。值得一试。

$form['select'] = [
  '#type' => 'select',
  '#title' => t('Select'),
  '#options' => [
    '0' => t('Bob 0'),
    '1' => t('Bob 1'),
  ],
  // You define attributes for individual options as follows.
  '0' => [
    // I have tried 'disabled' = TRUE and it works.
    'disabled' => TRUE,
    // I have never tried #attributes, but I think it should work.
    '#attributes' => [
      'class' => ['bob-0'],
    ],
  ]
]

希望对您有所帮助。干杯! 或者,选择其他解决方案之一。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.