public function FormState::isProcessingInput in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::isProcessingInput()
Determines if the form input will be processed.
Return value
bool If TRUE, the form input will be processed.
Overrides FormStateInterface::isProcessingInput
1 call to FormState::isProcessingInput()
- FormState::getCacheableArray in core/
lib/ Drupal/ Core/ Form/ FormState.php - Returns an array representation of the cacheable portion of the form state.
File
- core/
lib/ Drupal/ Core/ Form/ FormState.php, line 665
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\FormCode
public function isProcessingInput() {
return $this->process_input;
}