You are here

public function OverviewForm::submitForm in Admin Audit Trail 1.0.x

Form submission handler.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides FormInterface::submitForm

File

src/OverviewForm.php, line 243

Class

OverviewForm
Configure user settings for this site.

Namespace

Drupal\admin_audit_trail

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  $form_state
    ->disableRedirect();
  $form_state
    ->setRebuild();
  $this
    ->setFilters($form_state);
}