You are here

public function SubFormState::isExecuted in Authorization 8

Determines if the form was submitted and has been processed and executed.

Return value

bool TRUE if the form was submitted and has been processed and executed.

Overrides FormStateInterface::isExecuted

File

src/Form/SubFormState.php, line 508

Class

SubFormState
Represents the form state of a sub-form.

Namespace

Drupal\authorization\Form

Code

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