aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Event/Listener/UserLocaleListener.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-10-30 09:58:39 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-10-30 09:58:39 +0100
commit535bfcbe80de5d697b768c3a657214fdeff0eac3 (patch)
treeab10a21bc5358344e29ee54c17a5a404d6cd7ada /src/Wallabag/CoreBundle/Event/Listener/UserLocaleListener.php
parent156bf62758080153668a65db611c4241d0fc8a00 (diff)
downloadwallabag-535bfcbe80de5d697b768c3a657214fdeff0eac3.tar.gz
wallabag-535bfcbe80de5d697b768c3a657214fdeff0eac3.tar.zst
wallabag-535bfcbe80de5d697b768c3a657214fdeff0eac3.zip
Move related event things in Event folder
Diffstat (limited to 'src/Wallabag/CoreBundle/Event/Listener/UserLocaleListener.php')
-rw-r--r--src/Wallabag/CoreBundle/Event/Listener/UserLocaleListener.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Event/Listener/UserLocaleListener.php b/src/Wallabag/CoreBundle/Event/Listener/UserLocaleListener.php
new file mode 100644
index 00000000..367cdfb0
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Event/Listener/UserLocaleListener.php
@@ -0,0 +1,37 @@
1<?php
2
3namespace Wallabag\CoreBundle\Event\Listener;
4
5use Symfony\Component\HttpFoundation\Session\Session;
6use Symfony\Component\Security\Http\Event\InteractiveLoginEvent;
7
8/**
9 * Stores the locale of the user in the session after the
10 * login. This can be used by the LocaleListener afterwards.
11 *
12 * @see http://symfony.com/doc/master/cookbook/session/locale_sticky_session.html
13 */
14class UserLocaleListener
15{
16 /**
17 * @var Session
18 */
19 private $session;
20
21 public function __construct(Session $session)
22 {
23 $this->session = $session;
24 }
25
26 /**
27 * @param InteractiveLoginEvent $event
28 */
29 public function onInteractiveLogin(InteractiveLoginEvent $event)
30 {
31 $user = $event->getAuthenticationToken()->getUser();
32
33 if (null !== $user->getConfig()->getLanguage()) {
34 $this->session->set('_locale', $user->getConfig()->getLanguage());
35 }
36 }
37}