notification_popin-1.2.2/src/Form/NotificationForm.php
src/Form/NotificationForm.php
<?php declare(strict_types = 1);
namespace Drupal\notification_popin\Form;
use Drupal\Core\Entity\ContentEntityForm;
use Drupal\Core\Form\FormStateInterface;
/**
* Form controller for the notification entity edit forms.
*/
final class NotificationForm extends ContentEntityForm {
/**
* {@inheritdoc}
*/
public function save(array $form, FormStateInterface $form_state): int {
$result = parent::save($form, $form_state);
$message_args = ['%label' => $this->entity->toLink()->toString()];
$logger_args = [
'%label' => $this->entity->label(),
'link' => $this->entity->toLink($this->t('View'))->toString(),
];
switch ($result) {
case SAVED_NEW:
$this->messenger()->addStatus($this->t('New notification %label has been created.', $message_args));
$this->logger('notification')->notice('New notification %label has been created.', $logger_args);
break;
case SAVED_UPDATED:
$this->messenger()->addStatus($this->t('The notification %label has been updated.', $message_args));
$this->logger('notification')->notice('The notification %label has been updated.', $logger_args);
break;
default:
throw new \LogicException('Could not save the entity.');
}
$form_state->setRedirectUrl($this->entity->toUrl());
return $result;
}
}
