public function SubFormState::isRebuilding in Authorization 8
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
- src/
Form/ SubFormState.php, line 403
Class
- SubFormState
- Represents the form state of a sub-form.
Namespace
Drupal\authorization\FormCode
public function isRebuilding() {
return $this->mainFormState
->isRebuilding();
}