public function FormState::getAlwaysProcess in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::getAlwaysProcess()
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
- core/
lib/ Drupal/ Core/ Form/ FormState.php, line 478
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\FormCode
public function getAlwaysProcess() {
return $this->always_process;
}