ModerationStateTransitionForm::save

public ModerationStateTransitionForm::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/content_moderation/src/Form/ModerationStateTransitionForm.php, line 132

Class

ModerationStateTransitionForm
Class ModerationStateTransitionForm.

Namespace

Drupal\content_moderation\Form

Code

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

  switch ($status) {
    case SAVED_NEW:
      drupal_set_message($this->t('Created the %label Moderation state transition.', [
        '%label' => $moderation_state_transition->label(),
      ]));
      break;

    default:
      drupal_set_message($this->t('Saved the %label Moderation state transition.', [
        '%label' => $moderation_state_transition->label(),
      ]));
  }
  $form_state->setRedirectUrl($moderation_state_transition->toUrl('collection'));
}
doc_Drupal
2016-10-29 09:29:00
Comments
Leave a Comment

Please login to continue.