Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to setup a new website with 2 locales and the locale should detected by the domain name that's used. Any idea how to do this?

for example locales: nl and fr
when www.somenldomainname.be is used then the nl locale should be detected
when www.somefrdomainname.be is used then the fr locale should be detected

it would also be great if i generate an url in nl or fr the right domain name is selected.

kind regards,

Daan

share|improve this question

1 Answer

You can create an event listener to detect your domain name:

class LocaleListener implements EventSubscriberInterface
{

    /**
     * Set default locale
     *
     * @param GetResponseEvent $event
     */
    public function onKernelRequest(GetResponseEvent $event)
    {
        $request = $event->getRequest();
        if (!$request->hasPreviousSession()) {
            return;
        }
        // get domain name
        $host = $request->getHttpHost();
        // or $host = $request->getHost();
        $locale = 'en';
        if ($host == 'domain1') {
            $locale = 'fr';
        } 
        $request->setLocale($locale);
    }

    /**
     * {@inheritdoc}
     */
    static public function getSubscribedEvents()
    {
        return array(
            // must be registered before the default Locale listener
            KernelEvents::REQUEST => array(array('onKernelRequest', 17)),
        );
    }

}

And in your services.yml:

services:

    my_locale_listener:
        class: MyBundle\LocaleListener
        tags:
            -  { name: kernel.event_subscriber }

You can put in listener constructor default locle from parameters.yml file and if locale is not detected by domain set default locale.

share|improve this answer
there isn't a more build in way to do this? Because for generating the urls i'll need to overwrite the url generator then i presume ... – Daan Poron Feb 2 at 15:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.