You are here

public function SubFormState::isProcessingInput in Authorization 8

Determines if the form input will be processed.

Return value

bool If TRUE, the form input will be processed.

Overrides FormStateInterface::isProcessingInput

File

src/Form/SubFormState.php, line 642

Class

SubFormState
Represents the form state of a sub-form.

Namespace

Drupal\authorization\Form

Code

public function isProcessingInput() {
  return $this->mainFormState
    ->isProcessingInput();
}