You are here

public function FormState::getButtons in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::getButtons()

Returns the submit and button elements for the form.

Return value

array The submit and button elements.

Overrides FormStateInterface::getButtons

1 call to FormState::getButtons()
FormState::cleanValues in core/lib/Drupal/Core/Form/FormState.php
Removes internal Form API elements and buttons from submitted form values.

File

core/lib/Drupal/Core/Form/FormState.php, line 493

Class

FormState
Stores information about the state of a form.

Namespace

Drupal\Core\Form

Code

public function getButtons() {
  return $this->buttons;
}