From e901b79f54a40b9795be9ac995163dd911574a3e Mon Sep 17 00:00:00 2001 From: Owen Bush <ojb@ukhhf.co.uk> Date: Thu, 28 Mar 2019 20:35:59 -0600 Subject: [PATCH] Stop using drupal_set_message --- .../src/Form/RegistrantForm.php | 37 ++++++++++++++++++- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/modules/recurring_events_registration/src/Form/RegistrantForm.php b/modules/recurring_events_registration/src/Form/RegistrantForm.php index 3e51c04..c883d12 100644 --- a/modules/recurring_events_registration/src/Form/RegistrantForm.php +++ b/modules/recurring_events_registration/src/Form/RegistrantForm.php @@ -4,6 +4,9 @@ namespace Drupal\recurring_events_registration\Form; use Drupal\Core\Entity\ContentEntityForm; use Drupal\Core\Form\FormStateInterface; +use Symfony\Component\DependencyInjection\ContainerInterface; +use Drupal\Core\Entity\EntityManagerInterface; +use Drupal\Core\Messenger\Messenger; /** * Form controller for Registrant edit forms. @@ -12,6 +15,36 @@ use Drupal\Core\Form\FormStateInterface; */ class RegistrantForm extends ContentEntityForm { + /** + * The messenger service. + * + * @var \Drupal\Core\Messenger\Messenger + */ + protected $messenger; + + /** + * {@inheritdoc} + */ + public static function create(ContainerInterface $container) { + return new static( + $container->get('entity.manager'), + $container->get('messenger') + ); + } + + /** + * Construct a EventSeriesForm. + * + * @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager + * The entity manager service. + * @param \Drupal\Core\Messenger\Messenger $messenger + * The messenger service. + */ + public function __construct(EntityManagerInterface $entity_manager, Messenger $messenger) { + $this->messenger = $messenger; + parent::__construct($entity_manager); + } + /** * {@inheritdoc} */ @@ -34,13 +67,13 @@ class RegistrantForm extends ContentEntityForm { switch ($status) { case SAVED_NEW: - drupal_set_message($this->t('Created the %label Registrant.', [ + $this->messenger->addMessage($this->t('Created the %label Registrant.', [ '%label' => $entity->label(), ])); break; default: - drupal_set_message($this->t('Saved the %label Registrant.', [ + $this->messenger->addMessage($this->t('Saved the %label Registrant.', [ '%label' => $entity->label(), ])); } -- GitLab