function FormStateDecoratorBase::setInvalidToken
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 693
Class
- FormStateDecoratorBase
- Decorates another form state.
Namespace
Drupal\Core\FormCode
public function setInvalidToken($invalid_token) {
$this->decoratedFormState
->setInvalidToken($invalid_token);
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.