You are here

public function ShareMessageForm::save in Share Message 8

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/ShareMessageForm.php, line 451

Class

ShareMessageForm
Base form controller for Share Message edit forms.

Namespace

Drupal\sharemessage\Form

Code

public function save(array $form, FormStateInterface $form_state) {

  /** @var \Drupal\sharemessage\ShareMessageInterface $sharemessage */
  $sharemessage = $this->entity;
  $status = $sharemessage
    ->save();
  if ($status == SAVED_UPDATED) {
    $this
      ->messenger()
      ->addMessage(t('Share Message %label has been updated.', [
      '%label' => $sharemessage
        ->label(),
    ]));
  }
  else {
    $this
      ->messenger()
      ->addMessage(t('Share Message %label has been added.', [
      '%label' => $sharemessage
        ->label(),
    ]));
  }

  // Share Message settings might have changed, but it is not immediately
  // updated for the view display. Thus clear the entity extra field caches.
  \Drupal::service('entity_field.manager')
    ->clearCachedFieldDefinitions();
  $form_state
    ->setRedirect('entity.sharemessage.collection');
}