You are here

public function CookieCategoryForm::save in EU Cookie Compliance (GDPR Compliance) 8

Same name and namespace in other branches
  1. 2.0.x src/Form/CookieCategoryForm.php \Drupal\eu_cookie_compliance\Form\CookieCategoryForm::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/CookieCategoryForm.php, line 91

Class

CookieCategoryForm
Class CookieCategoryForm.

Namespace

Drupal\eu_cookie_compliance\Form

Code

public function save(array $form, FormStateInterface $form_state) {
  $cookie_category = $this->entity;
  $status = $cookie_category
    ->save();
  switch ($status) {
    case SAVED_NEW:
      $this
        ->messenger()
        ->addMessage($this
        ->t('Created the %label Cookie category.', [
        '%label' => $cookie_category
          ->label(),
      ]));
      break;
    default:
      $this
        ->messenger()
        ->addMessage($this
        ->t('Saved the %label Cookie category.', [
        '%label' => $cookie_category
          ->label(),
      ]));
  }
  $form_state
    ->setRedirectUrl($cookie_category
    ->toUrl('collection'));
}