public FormState::isRedirectDisabled()
Determines if redirecting has been prevented.
Return value
bool If TRUE, the form will not redirect.
Overrides FormStateInterface::isRedirectDisabled
File
- core/lib/Drupal/Core/Form/FormState.php, line 650
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\Form
Code
1 2 3 | public function isRedirectDisabled() { return $this ->no_redirect; } |
Please login to continue.