src/EventSubscriber/LocaleSubscriber.php line 21

Open in your IDE?
  1. <?php
  2. namespace App\EventSubscriber;
  3. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  4. use Symfony\Component\HttpKernel\Event\RequestEvent;
  5. use Symfony\Component\HttpKernel\KernelEvents;
  6. class LocaleSubscriber implements EventSubscriberInterface
  7. {
  8.     // Langue par défaut
  9.     private $defaultLocale;
  10.     public function __construct($defaultLocale 'en')
  11.     {
  12.         $this->defaultLocale $defaultLocale;
  13.     }
  14.     public function onKernelRequest(RequestEvent $event)
  15.     {
  16.         $request $event->getRequest();
  17.         if (!$request->hasPreviousSession()) {
  18.             return;
  19.         }
  20.         // On vérifie si la langue est passée en paramètre de l'URL
  21.         if ($locale $request->query->get('_locale')) {
  22.             $request->setLocale($locale);
  23.         } else {
  24.             // Sinon on utilise celle de la session
  25.             $request->setLocale($request->getSession()->get('_locale'$this->defaultLocale));
  26.         }
  27.     }
  28.     /**
  29.      * Returns an array of event names this subscriber wants to listen to.
  30.      *
  31.      * The array keys are event names and the value can be:
  32.      *
  33.      *  * The method name to call (priority defaults to 0)
  34.      *  * An array composed of the method name to call and the priority
  35.      *  * An array of arrays composed of the method names to call and respective
  36.      *    priorities, or 0 if unset
  37.      *
  38.      * For instance:
  39.      *
  40.      *  * ['eventName' => 'methodName']
  41.      *  * ['eventName' => ['methodName', $priority]]
  42.      *  * ['eventName' => [['methodName1', $priority], ['methodName2']]]
  43.      *
  44.      * @return array The event names to listen to
  45.      */
  46.     public static function getSubscribedEvents()
  47.     {
  48.         return [
  49.             // On doit définir une priorité élevée
  50.             KernelEvents::REQUEST => [['onKernelRequest'20]],
  51.         ];
  52.     }
  53. }