You are here

public function FormStateDecoratorBase::isRedirectDisabled in Markdown 8.2

Determines if redirecting has been prevented.

Return value

bool If TRUE, the form will not redirect.

Overrides FormStateInterface::isRedirectDisabled

File

src/BcSupport/FormStateDecoratorBase.php, line 211

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

public function isRedirectDisabled() {
  return $this->decoratedFormState
    ->isRedirectDisabled();
}