You are here

public function ReferenceTypeForm::save in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x modules/bibcite_entity/src/Form/ReferenceTypeForm.php \Drupal\bibcite_entity\Form\ReferenceTypeForm::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

modules/bibcite_entity/src/Form/ReferenceTypeForm.php, line 237

Class

ReferenceTypeForm
Reference type form.

Namespace

Drupal\bibcite_entity\Form

Code

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

  /** @var \Drupal\bibcite_entity\Entity\ReferenceTypeInterface $reference_type */
  $reference_type = $this->entity;
  $reference_type
    ->setNewRevision($form_state
    ->getValue('revision'));
  $fields = $this->entityFieldManager
    ->getFieldDefinitions('bibcite_reference', $reference_type
    ->id());
  $status = $reference_type
    ->save();
  $fields['status']
    ->getConfig($reference_type
    ->id())
    ->setDefaultValue($form_state
    ->getValue('status'))
    ->save();
  switch ($status) {
    case SAVED_NEW:
      $this
        ->messenger()
        ->addStatus($this
        ->t('The %label Reference type has been added.', [
        '%label' => $reference_type
          ->label(),
      ]));
      break;
    default:
      $this
        ->messenger()
        ->addStatus($this
        ->t('The %label Reference type has been updated.', [
        '%label' => $reference_type
          ->label(),
      ]));
  }
  $form_state
    ->setRedirectUrl($reference_type
    ->toUrl('collection'));
}