You are here

public function CustomFilterForm::save in Custom filter 2.0.x

Same name and namespace in other branches
  1. 8 src/Form/CustomFilterForm.php \Drupal\customfilter\Form\CustomFilterForm::save()

Form submission handler for the 'save' action.

Normally this method should be overridden to provide specific messages to the user and redirect the form after the entity has been saved.

Parameters

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

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

Return value

int Either SAVED_NEW or SAVED_UPDATED, depending on the operation performed.

Overrides EntityForm::save

File

src/Form/CustomFilterForm.php, line 97

Class

CustomFilterForm
Builds the form to add/edit a Custom Filter.

Namespace

Drupal\customfilter\Form

Code

public function save(array $form, FormStateInterface $form_state) {
  $filter = $this->entity;
  $status = $filter
    ->save();
  if ($status) {
    $this
      ->messenger()
      ->addStatus($this
      ->t('Saved the %label Custom Filter.', [
      '%label' => $filter
        ->label(),
    ]));
  }
  else {
    $this
      ->messenger()
      ->addStatus($this
      ->t('The %label Custom Filter was not saved.', [
      '%label' => $filter
        ->label(),
    ]));
  }
  $form_state
    ->setRedirect('entity.customfilter.list');
}