3

我想设置一个具有 2 个语言环境的新网站,并且应该通过使用的域名检测到该语言环境。知道怎么做吗?

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

如果我在 nl 或 fr 中生成一个 url 并且选择了正确的域名,那就太好了。

亲切的问候,

大安

4

3 回答 3

3

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.

于 2013-02-02T12:42:20.073 回答
3

有一个捆绑包:https://github.com/schmittjoh/JMSI18nRoutingBundle

这是你如何设置它config.yml

jms_i18n_routing:
    default_locale: nl
    locales: [nl, fr]
    strategy: custom
    hosts:
        nl: www.somenldomainname.be
        fr: www.somefrdomainname.be
redirect_to_host: true

有关更多详细信息,请参阅有关使用场景的文档。

于 2013-08-11T21:46:13.347 回答
1

捆绑包 JMSI18nRoutingBundle 仅支持 symfony <=2.1.x。好方法似乎是使用 Daniel Korsak 的解决方案。这是一个更完整的参数示例。

namespace Path\ToYourBundle\Listeners;

use \Symfony\Component\HttpKernel\Event\GetResponseEvent;
use \Symfony\Component\HttpKernel\KernelEvents;
use \Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\DependencyInjection\ContainerInterface as Container;

class LocaleListener implements EventSubscriberInterface
{
    protected $domainLocales;
    protected $defaultLocale;

    public function __construct($container,$defaultLocale)
    {
        $this->domainLocales = $container->getParameter('domain_locales');
        $this->defaultLocale = $defaultLocale;
    }
    /**
     * 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 = $this->defaultLocale;


        if (array_key_exists($host, $this->domainLocales))
        {
            $locale = $this->domainLocales[$host];
        }
        $request->setLocale($locale);
    }

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

在你的 services.yml 中:

services:

    my_locale_listener:
        class: Path\ToYourBundle\Listeners\LocaleListener
        tags:
            -  { name: kernel.event_subscriber }
        arguments: [@service_container,%locale%]
parameters:
    domain_locales:
        domain1: en
        domain2: fr
于 2015-01-07T10:21:05.107 回答