public FormState::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/FormState.php, line 1238
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\Form
Code
public function setInvalidToken($invalid_token) { $this->invalidToken = (bool) $invalid_token; return $this; }
Please login to continue.