function Actions::getInfo
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Render/Element/Actions.php \Drupal\Core\Render\Element\Actions::getInfo()
- 10 core/lib/Drupal/Core/Render/Element/Actions.php \Drupal\Core\Render\Element\Actions::getInfo()
- 11.x core/lib/Drupal/Core/Render/Element/Actions.php \Drupal\Core\Render\Element\Actions::getInfo()
Overrides Container::getInfo
File
-
core/
lib/ Drupal/ Core/ Render/ Element/ Actions.php, line 32
Class
- Actions
- Provides a wrapper element to group one or more buttons in a form.
Namespace
Drupal\Core\Render\ElementCode
public function getInfo() {
$class = static::class;
return [
'#process' => [
// @todo Move this to #pre_render.
[
$class,
'preRenderActionsDropbutton',
],
[
$class,
'processActions',
],
[
$class,
'processContainer',
],
],
'#weight' => 100,
'#theme_wrappers' => [
'container',
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.