public function FormState::getCleanValueKeys in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::getCleanValueKeys()
Gets the keys of the form values that will be cleaned.
Return value
array An array of form value keys to be cleaned.
Overrides FormStateInterface::getCleanValueKeys
2 calls to FormState::getCleanValueKeys()
- FormState::addCleanValueKey in core/
lib/ Drupal/ Core/ Form/ FormState.php - Adds a key to the array of form values that will be cleaned.
- FormState::cleanValues in core/
lib/ Drupal/ Core/ Form/ FormState.php - Removes internal Form API elements and buttons from submitted form values.
File
- core/
lib/ Drupal/ Core/ Form/ FormState.php, line 1172
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\FormCode
public function getCleanValueKeys() {
return $this->cleanValueKeys;
}