function 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',
],
];
}