protected function EntityForm::actionsElement in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/EntityForm.php \Drupal\Core\Entity\EntityForm::actionsElement()
- 10 core/lib/Drupal/Core/Entity/EntityForm.php \Drupal\Core\Entity\EntityForm::actionsElement()
Returns the action form element for the current entity form.
1 call to EntityForm::actionsElement()
- EntityForm::buildForm in core/
lib/ Drupal/ Core/ Entity/ EntityForm.php - Form constructor.
File
- core/
lib/ Drupal/ Core/ Entity/ EntityForm.php, line 179
Class
- EntityForm
- Base class for entity forms.
Namespace
Drupal\Core\EntityCode
protected function actionsElement(array $form, FormStateInterface $form_state) {
$element = $this
->actions($form, $form_state);
if (isset($element['delete'])) {
// Move the delete action as last one, unless weights are explicitly
// provided.
$delete = $element['delete'];
unset($element['delete']);
$element['delete'] = $delete;
$element['delete']['#button_type'] = 'danger';
}
if (isset($element['submit'])) {
// Give the primary submit button a #button_type of primary.
$element['submit']['#button_type'] = 'primary';
}
$count = 0;
foreach (Element::children($element) as $action) {
$element[$action] += [
'#weight' => ++$count * 5,
];
}
if (!empty($element)) {
$element['#type'] = 'actions';
}
return $element;
}