public function SubFormState::getAlwaysProcess in Authorization 8
Determines if this form should always be processed.
Return value
bool TRUE if the form should always be processed, FALSE otherwise.
Overrides FormStateInterface::getAlwaysProcess
File
- src/
Form/ SubFormState.php, line 455
Class
- SubFormState
- Represents the form state of a sub-form.
Namespace
Drupal\authorization\FormCode
public function getAlwaysProcess() {
return $this->mainFormState
->getAlwaysProcess();
}