KeywordForm.php in Bibliography & Citation 8
File
modules/bibcite_entity/src/Form/KeywordForm.php
View source
<?php
namespace Drupal\bibcite_entity\Form;
use Drupal\Core\Entity\ContentEntityForm;
use Drupal\Core\Form\FormStateInterface;
class KeywordForm extends ContentEntityForm {
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
$entity = $this->entity;
return $form;
}
public function save(array $form, FormStateInterface $form_state) {
$entity = $this->entity;
$status = parent::save($form, $form_state);
switch ($status) {
case SAVED_NEW:
$this
->messenger()
->addStatus($this
->t('Created the %label Keyword.', [
'%label' => $entity
->label(),
]));
break;
default:
$this
->messenger()
->addStatus($this
->t('Saved the %label Keyword.', [
'%label' => $entity
->label(),
]));
}
$form_state
->setRedirect('entity.bibcite_keyword.canonical', [
'bibcite_keyword' => $entity
->id(),
]);
}
}