public function SubFormState::setExecuted in Authorization 8
Sets that the form was submitted and has been processed and executed.
Return value
$this
Overrides FormStateInterface::setExecuted
File
- src/
Form/ SubFormState.php, line 500
Class
- SubFormState
- Represents the form state of a sub-form.
Namespace
Drupal\authorization\FormCode
public function setExecuted() {
$this->mainFormState
->setExecuted();
return $this;
}