フォーム選択オプション項目にクラスを追加します


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>

この質問が好きです。テーマの正義に賛成。
レスターピーボディ

これはまだdrupal 7の問題ですか?
ウィル

回答:


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'],
    ],
  ]
]

役に立てば幸いです。乾杯!または、他のソリューションのいずれかを選択します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.