protected EntityForm::actionsElement(array $form, FormStateInterface $form_state)
Returns the action form element for the current entity form.
File
- core/lib/Drupal/Core/Entity/EntityForm.php, line 188
Class
- EntityForm
- Base class for entity forms.
Namespace
Drupal\Core\Entity
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 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 ] += array ( '#weight' => ++ $count * 5, ); } if (! empty ( $element )) { $element [ '#type' ] = 'actions' ; } return $element ; } |
Please login to continue.