public 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\Form
Code
1 2 3 | public function getAlwaysProcess() { return $this ->always_process; } |
Please login to continue.