CommentTypeForm::save

public CommentTypeForm::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/comment/src/CommentTypeForm.php, line 155

Class

CommentTypeForm
Base form handler for comment type edit forms.

Namespace

Drupal\comment

Code

public function save(array $form, FormStateInterface $form_state) {
  $comment_type = $this->entity;
  $status = $comment_type->save();

  $edit_link = $this->entity->link($this->t('Edit'));
  if ($status == SAVED_UPDATED) {
    drupal_set_message(t('Comment type %label has been updated.', array('%label' => $comment_type->label())));
    $this->logger->notice('Comment type %label has been updated.', array('%label' => $comment_type->label(), 'link' => $edit_link));
  }
  else {
    $this->commentManager->addBodyField($comment_type->id());
    drupal_set_message(t('Comment type %label has been added.', array('%label' => $comment_type->label())));
    $this->logger->notice('Comment type %label has been added.', array('%label' => $comment_type->label(), 'link' => $edit_link));
  }

  $form_state->setRedirectUrl($comment_type->urlInfo('collection'));
}
doc_Drupal
2016-10-29 08:51:18
Comments
Leave a Comment

Please login to continue.