Hi
I ve got a multilingual site. The user can decide the language of the page. Is there a way to choose the locale for the session and not each request ?
Version imprimable
Hi
I ve got a multilingual site. The user can decide the language of the page. Is there a way to choose the locale for the session and not each request ?
Développez c'est un forum dont la spécialisation est d'être Francophone, il faut écrire en français ici ^^
peut être
Code:
1
2
3
4
5 $this->get('session')->set('_locale', 'en_US'); $request = $this->getRequest(); $locale = $request->getLocale(); $request->setLocale('en_US');