public FormStateValuesTrait::unsetValue($key)
Implements \Drupal\Core\Form\FormStateInterface::unsetValue()
File
- core/lib/Drupal/Core/Form/FormStateValuesTrait.php, line 53
Class
- FormStateValuesTrait
- Provides methods to manage form state values.
Namespace
Drupal\Core\Form
Code
1 2 3 4 | public function unsetValue( $key ) { NestedArray::unsetValue( $this ->getValues(), ( array ) $key ); return $this ; } |
Please login to continue.