public FormState::setSubmitted()
Sets that the form has been submitted.
Return value
$this
Overrides FormStateInterface::setSubmitted
File
- core/lib/Drupal/Core/Form/FormState.php, line 757
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\Form
Code
1 2 3 4 | public function setSubmitted() { $this ->submitted = TRUE; return $this ; } |
Please login to continue.