ShortcutForm::save

public ShortcutForm::save(array $form, FormStateInterface $form_state)

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

core/modules/shortcut/src/ShortcutForm.php, line 23

Class

ShortcutForm
Form handler for the shortcut entity forms.

Namespace

Drupal\shortcut

Code

public function save(array $form, FormStateInterface $form_state) {
  $entity = $this->entity;
  $status = $entity->save();
  $url = $entity->getUrl();
  // There's an edge case where a user can have permission to
  // 'link to any content', but has no right to access the linked page. So we
  // check the access before showing the link.
  if ($url->access()) {
    $view_link = \Drupal::l($entity->getTitle(), $url);
  }
  else {
    $view_link = $entity->getTitle();
  }

  if ($status == SAVED_UPDATED) {
    $message = $this->t('The shortcut %link has been updated.', array('%link' => $view_link));
  }
  else {
    $message = $this->t('Added a shortcut for %title.', array('%title' => $view_link));
  }
  drupal_set_message($message);

  $form_state->setRedirect(
  'entity.shortcut_set.customize_form', 
  array('shortcut_set' => $entity->bundle())
  );
}
doc_Drupal
2016-10-29 09:42:35
Comments
Leave a Comment

Please login to continue.