public static function Select::preRenderSelect

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;
}

© 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!lib!Drupal!Core!Render!Element!Select.php/function/Select::preRenderSelect/8.1.x