public static Select::preRenderSelect($element)
Prepares a select render element.
File
- core/lib/Drupal/Core/Render/Element/Select.php, line 170
Class
- Select
- Provides a form element for a drop-down menu or scrolling selection box.
Namespace
Drupal\Core\Render\Element
Code
public static function preRenderSelect($element) {
Element::setAttributes($element, array('id', 'name', 'size'));
static::setAttributes($element, array('form-select'));
return $element;
}
Please login to continue.