template_preprocess_select(&$variables)
Prepares variables for select element templates.
Default template: select.html.twig.
It is possible to group options together; to do this, change the format of $options to an associative array in which the keys are group labels, and the values are associative arrays in the normal $options format.
$variables: An associative array containing:
function template_preprocess_select(&$variables) { $element = $variables['element']; Element::setAttributes($element, array('id', 'name', 'size')); RenderElement::setAttributes($element, array('form-select')); $variables['attributes'] = $element['#attributes']; $variables['options'] = form_select_options($element); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!form.inc/function/template_preprocess_select/8.1.x