vendor/symfony/symfony/src/Symfony/Component/HttpKernel/EventListener/TranslatorListener.php line 43

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\HttpKernel\EventListener;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. use Symfony\Component\HttpFoundation\Request;
  13. use Symfony\Component\HttpKernel\Event\GetResponseEvent;
  14. use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
  15. use Symfony\Component\HttpKernel\KernelEvents;
  16. use Symfony\Component\HttpFoundation\RequestStack;
  17. use Symfony\Component\Translation\TranslatorInterface;
  18. /**
  19.  * Synchronizes the locale between the request and the translator.
  20.  *
  21.  * @author Fabien Potencier <fabien@symfony.com>
  22.  */
  23. class TranslatorListener implements EventSubscriberInterface
  24. {
  25.     private $translator;
  26.     private $requestStack;
  27.     public function __construct(TranslatorInterface $translatorRequestStack $requestStack)
  28.     {
  29.         $this->translator $translator;
  30.         $this->requestStack $requestStack;
  31.     }
  32.     public function onKernelRequest(GetResponseEvent $event)
  33.     {
  34.         $this->setLocale($event->getRequest());
  35.     }
  36.     public function onKernelFinishRequest(FinishRequestEvent $event)
  37.     {
  38.         if (null === $parentRequest $this->requestStack->getParentRequest()) {
  39.             return;
  40.         }
  41.         $this->setLocale($parentRequest);
  42.     }
  43.     public static function getSubscribedEvents()
  44.     {
  45.         return array(
  46.             // must be registered after the Locale listener
  47.             KernelEvents::REQUEST => array(array('onKernelRequest'10)),
  48.             KernelEvents::FINISH_REQUEST => array(array('onKernelFinishRequest'0)),
  49.         );
  50.     }
  51.     private function setLocale(Request $request)
  52.     {
  53.         try {
  54.             $this->translator->setLocale($request->getLocale());
  55.         } catch (\InvalidArgumentException $e) {
  56.             $this->translator->setLocale($request->getDefaultLocale());
  57.         }
  58.     }
  59. }