public 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
File
- core/lib/Drupal/Core/Form/FormState.php, line 1172
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\Form
Code
1 2 3 | public function getCleanValueKeys() { return $this ->cleanValueKeys; } |
Please login to continue.