FormStateDecoratorBase::setInvalidToken

public FormStateDecoratorBase::setInvalidToken($invalid_token)

Flags the form state as having or not an invalid token.

Parameters

bool $invalid_token: Whether the form has an invalid token.

Return value

$this

Overrides FormStateInterface::setInvalidToken

File

core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 679

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\Core\Form

Code

public function setInvalidToken($invalid_token) {
  $this->decoratedFormState->setInvalidToken($invalid_token);

  return $this;
}
doc_Drupal
2016-10-29 09:16:24
Comments
Leave a Comment

Please login to continue.