library_management_system-1.0.1/src/Form/LmsPublicationForm.php

src/Form/LmsPublicationForm.php
<?php

namespace Drupal\library_management_system\Form;

use Drupal\Core\Entity\ContentEntityForm;
use Drupal\Core\Form\FormStateInterface;

/**
 * Form controller for LmsPublication edit forms.
 *
 * @ingroup library_management_system
 */
class LmsPublicationForm extends ContentEntityForm {

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    /* @var $entity \Drupal\library_management_system\Entity\LmsPublication */
    $form = parent::buildForm($form, $form_state);

    $entity = $this->entity;

    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function save(array $form, FormStateInterface $form_state) {
    $entity = $this->entity;

    $status = parent::save($form, $form_state);

    switch ($status) {
      case SAVED_NEW:
        \Drupal::messenger()->addMessage($this->t('Created the %label LmsPublication.', [
          '%label' => $entity->label(),
        ]));
        break;

      default:
        \Drupal::messenger()->addMessage($this->t('Saved the %label LmsPublication.', [
          '%label' => $entity->label(),
        ]));
    }
    $form_state->setRedirect('entity.lmspublication.canonical', ['lmspublication' => $entity->id()]);
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc