You are here

public function SubFormState::setProcessInput in Authorization 8

Sets that the form should process input.

Parameters

bool $process_input: If TRUE, the form input will be processed.

Return value

$this

Overrides FormStateInterface::setProcessInput

File

src/Form/SubFormState.php, line 634

Class

SubFormState
Represents the form state of a sub-form.

Namespace

Drupal\authorization\Form

Code

public function setProcessInput($process_input = TRUE) {
  $this->mainFormState
    ->setProcessInput($process_input);
  return $this;
}