Agregar clases para formar un elemento de opción de selección


19

¿Cómo puedo agregar clases a una etiqueta de opción de formulario sin JS? En este momento en Form API puedo pasar una matriz con clave como esta

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

y obtendré html como este

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

¿Hay alguna manera de hacer algo como esto?

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

y luego obtener esto

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

Me gusta esta pregunta Votaron por la justicia temática.
Lester Peabody

¿Sigue siendo un problema para drupal 7?
Será el

Respuestas:


8

Desafortunadamente, esto no es muy fácil usando el Form API actualmente.

Hay un problema abierto para agregar esta funcionalidad (se remonta a 2008) que teóricamente te permitiría hacer algo como esto:

$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')),
      ),
    ),
  ),
);

Pero desafortunadamente no hay más que parches fallidos adjuntos al problema en este momento.

La única forma en que se me ocurre hacerlo en este momento sería agregar una #processfunción al elemento de selección y agregar las clases a cada opción cuando se desglosan individualmente.


5

Así que no pude hacer la opción totalmente flexible, pero aquí hay una manera de agregar clases a la optionsetiqueta en función del valor de la opción. Funciona pero anula la theme_selectfunción para usar mi propia versión deform_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

En realidad, hay una manera de anular optionelementos individuales . Sin embargo, no estoy seguro de si funciona en Drupal 7.

Aquí hay un código que funciona en Drupal 8. Podría valer la pena intentarlo.

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

Espero que ayude. ¡Salud! Alternativamente, elija una de las otras soluciones.

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.