public function FormState::hasFileElement in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::hasFileElement()
Returns whether this form has a file element.
Return value
bool Whether this form has a file element.
Overrides FormStateInterface::hasFileElement
1 call to FormState::hasFileElement()
- 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 567
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\FormCode
public function hasFileElement() {
return $this->has_file_element;
}