You are here

public function SubFormState::unsetValue in Authorization 8

Removes a specific key from the submitted form values.

Parameters

string|array $key: Values are stored as a multi-dimensional associative array. If $key is a string, it will use unset($values[$key]). If $key is an array, each element of the array will be used as a nested key. If $key = array('foo', 'bar') it will use unset($values['foo']['bar']).

Return value

$this

Overrides FormStateInterface::unsetValue

File

src/Form/SubFormState.php, line 315

Class

SubFormState
Represents the form state of a sub-form.

Namespace

Drupal\authorization\Form

Code

public function unsetValue($key) {
  unset($this->values[$key]);
  return $this;
}