htools-8.x-1.x-dev/modules/htools_relations/src/Form/RelationalEntityForm.php
modules/htools_relations/src/Form/RelationalEntityForm.php
<?php
namespace Drupal\htools_relations\Form;
use Drupal\Core\Entity\ContentEntityForm;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Form controller for Relational entity edit forms.
*
* @ingroup htools_relations
*/
class RelationalEntityForm extends ContentEntityForm {
/**
* The current user account.
*
* @var \Drupal\Core\Session\AccountProxyInterface
*/
protected $account;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
// Instantiates this form class.
$instance = parent::create($container);
$instance->account = $container->get('current_user');
return $instance;
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
/* @var \Drupal\htools_relations\Entity\RelationalEntity $entity */
$form = parent::buildForm($form, $form_state);
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:
$this->messenger()->addMessage($this->t('Created the %label Relational entity.', [
'%label' => $entity->label(),
]));
break;
default:
$this->messenger()->addMessage($this->t('Saved the %label Relational entity.', [
'%label' => $entity->label(),
]));
}
$form_state->setRedirect('entity.relational_entity.canonical', ['relational_entity' => $entity->id()]);
}
}
