src/EventSubscriber/LocaleSubscriber.php line 26

Open in your IDE?
  1. <?php
  2. // src/EventSubscriber/LocaleSubscriber.php
  3. namespace App\EventSubscriber;
  4. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  5. use Symfony\Component\HttpKernel\Event\RequestEvent;
  6. use Symfony\Component\HttpKernel\KernelEvents;
  7. class LocaleSubscriber implements EventSubscriberInterface
  8. {
  9.     private $defaultLocale;
  10.     public function __construct($defaultLocale 'en')
  11.     {
  12.         
  13.        if(isset($_GET['lang']) && !empty($_GET['lang'])) $defaultLocale=@$_GET['lang'];
  14.         $this->defaultLocale $defaultLocale;
  15.        // $_SESSION['local']=$defaultLocale
  16.         
  17.     }
  18.     public function onKernelRequest(RequestEvent $event)
  19.     {
  20.         $request $event->getRequest();
  21.         if (!$request->hasPreviousSession()) {
  22.             return;
  23.         }
  24.         // try to see if the locale has been set as a _locale routing parameter
  25.         if ($locale $request->attributes->get('lang')) {
  26.             $request->getSession()->set('_locale'$locale);
  27.         } else {
  28.             // if no explicit locale has been set on this request, use one from the session
  29.             $request->setLocale($request->getSession()->get('_locale'$this->defaultLocale));
  30.         }
  31.     }
  32.     public static function getSubscribedEvents()
  33.     {
  34.         return [
  35.             // must be registered before (i.e. with a higher priority than) the default Locale listener
  36.             KernelEvents::REQUEST => [['onKernelRequest'20]],
  37.         ];
  38.     }
  39. }