function Container::getInfo
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Render/Element/Container.php \Drupal\Core\Render\Element\Container::getInfo()
- 10 core/lib/Drupal/Core/Render/Element/Container.php \Drupal\Core\Render\Element\Container::getInfo()
- 11.x core/lib/Drupal/Core/Render/Element/Container.php \Drupal\Core\Render\Element\Container::getInfo()
Overrides ElementInterface::getInfo
1 method overrides Container::getInfo()
- Actions::getInfo in core/
lib/ Drupal/ Core/ Render/ Element/ Actions.php - Returns the element properties for this element.
File
-
core/
lib/ Drupal/ Core/ Render/ Element/ Container.php, line 51
Class
- Container
- Provides a render element that wraps child elements in a container.
Namespace
Drupal\Core\Render\ElementCode
public function getInfo() {
$class = static::class;
return [
'#optional' => FALSE,
'#process' => [
[
$class,
'processGroup',
],
[
$class,
'processContainer',
],
],
'#pre_render' => [
[
$class,
'preRenderGroup',
],
[
$class,
'preRenderContainer',
],
],
'#theme_wrappers' => [
'container',
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.