function Radio::getInfo
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Render/Element/Radio.php \Drupal\Core\Render\Element\Radio::getInfo()
- 10 core/lib/Drupal/Core/Render/Element/Radio.php \Drupal\Core\Render\Element\Radio::getInfo()
- 11.x core/lib/Drupal/Core/Render/Element/Radio.php \Drupal\Core\Render\Element\Radio::getInfo()
Overrides ElementInterface::getInfo
File
-
core/
lib/ Drupal/ Core/ Render/ Element/ Radio.php, line 23
Class
- Radio
- Provides a form element for a single radio button.
Namespace
Drupal\Core\Render\ElementCode
public function getInfo() {
$class = static::class;
return [
'#input' => TRUE,
'#default_value' => NULL,
'#process' => [
[
$class,
'processAjaxForm',
],
],
'#pre_render' => [
[
$class,
'preRenderRadio',
],
],
'#theme' => 'input__radio',
'#theme_wrappers' => [
'form_element',
],
'#title_display' => 'after',
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.