function MachineName::getInfo
Same name in other branches
- 9 core/lib/Drupal/Core/Render/Element/MachineName.php \Drupal\Core\Render\Element\MachineName::getInfo()
- 10 core/lib/Drupal/Core/Render/Element/MachineName.php \Drupal\Core\Render\Element\MachineName::getInfo()
- 11.x core/lib/Drupal/Core/Render/Element/MachineName.php \Drupal\Core\Render\Element\MachineName::getInfo()
Overrides Textfield::getInfo
File
-
core/
lib/ Drupal/ Core/ Render/ Element/ MachineName.php, line 77
Class
- MachineName
- Provides a machine name render element.
Namespace
Drupal\Core\Render\ElementCode
public function getInfo() {
$class = get_class($this);
return [
'#input' => TRUE,
'#default_value' => NULL,
'#required' => TRUE,
'#maxlength' => 64,
'#size' => 60,
'#autocomplete_route_name' => FALSE,
'#process' => [
[
$class,
'processMachineName',
],
[
$class,
'processAutocomplete',
],
[
$class,
'processAjaxForm',
],
],
'#element_validate' => [
[
$class,
'validateMachineName',
],
],
'#pre_render' => [
[
$class,
'preRenderTextfield',
],
],
'#theme' => 'input__textfield',
'#theme_wrappers' => [
'form_element',
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.