Fügen Sie Klassen zum Formularauswahloptionselement hinzu

19

Wie kann ich einem Formularoptions-Tag ohne JS Klassen hinzufügen? Im Moment kann ich in der Formular-API ein solches verschlüsseltes Array übergeben

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

und ich werde html so bekommen

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

Gibt es eine Möglichkeit, wie folgt vorzugehen:

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

und dann hol das

<option value="0" class="bob 0">option 0</option>
<option value="1" class="bob 1">option 1</option>
Paul Sheldrake
quelle
Ich mag diese Frage. Für die Thematisierung der Gerechtigkeit ausgezeichnet.
Lester Peabody
Ist dies immer noch ein Problem für Drupal 7?
Wird

Antworten:

8

Leider ist dies mit der Formular-API derzeit nicht sehr einfach.

Es ist noch ein Problem offen, um diese Funktionalität hinzuzufügen (sie reicht bis ins Jahr 2008 zurück), mit der Sie theoretisch Folgendes tun können:

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

Leider sind dem Problem im Moment nur fehlerhafte Patches beigefügt.

Die einzige Möglichkeit, die mir derzeit in den Sinn kommt, besteht darin #process, dem select-Element eine Funktion hinzuzufügen und die Klassen zu jeder Option hinzuzufügen, wenn sie einzeln aufgeschlüsselt sind.

Clive
quelle
5

Daher konnte ich die vollständig flexible Option nicht ausführen, aber hier ist eine Möglichkeit, dem optionsTag basierend auf dem Optionswert Klassen hinzuzufügen . Es funktioniert, überschreibt aber die theme_selectFunktion, um meine eigene Version von zu verwendenform_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;
}
Paul Sheldrake
quelle
0

Es gibt tatsächlich eine Möglichkeit, einzelne optionElemente zu überschreiben . Ich bin mir jedoch nicht sicher, ob es in Drupal 7 funktioniert.

Hier ist ein Code, der in Drupal 8 funktioniert. Könnte einen Versuch wert sein.

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

Ich hoffe, es hilft. Prost! Alternativ können Sie sich für eine der anderen Lösungen entscheiden.

Jigarius
quelle