public FormStateDecoratorBase::isRebuilding()
Determines if the form should be rebuilt after processing.
Return value
bool TRUE if the form should be rebuilt, FALSE otherwise.
Overrides FormStateInterface::isRebuilding
File
- core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 672
Class
- FormStateDecoratorBase
- Decorates another form state.
Namespace
Drupal\Core\Form
Code
public function isRebuilding() { return $this->decoratedFormState->isRebuilding(); }
Please login to continue.