public function Hidden::getInfo in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Render/Element/Hidden.php \Drupal\Core\Render\Element\Hidden::getInfo()
Returns the element properties for this element.
Return value
array An array of element properties. See \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for documentation of the standard properties of all elements, and the return value format.
Overrides ElementInterface::getInfo
1 method overrides Hidden::getInfo()
- Token::getInfo in core/
lib/ Drupal/ Core/ Render/ Element/ Token.php - Returns the element properties for this element.
File
- core/
lib/ Drupal/ Core/ Render/ Element/ Hidden.php, line 32
Class
- Hidden
- Provides a form element for an HTML 'hidden' input element.
Namespace
Drupal\Core\Render\ElementCode
public function getInfo() {
$class = static::class;
return [
'#input' => TRUE,
'#process' => [
[
$class,
'processAjaxForm',
],
],
'#pre_render' => [
[
$class,
'preRenderHidden',
],
],
'#theme' => 'input__hidden',
];
}