ハードコーディングは良い考えではありませんが、これは達成可能ですが、私が知っている限り、箱から出ることはできません。私が同じパスとparamsを持つURLを別のロケールに提供するために行ったのは、それを行うためのカスタムtwig拡張を作成することでした。
この拡張機能は、現在のルート、現在のパラメータを読み取ってプライベートパラメータを削除し、別のロケールに対して同じルートを生成する新しい分岐機能を提供します。ここで問題になっている小枝拡張子:
今
<?php
namespace Acme\WebsiteBundle\Twig\Extension;
use Symfony\Component\DependencyInjection\ContainerInterface;
class LocalizeRouteExtension extends \Twig_Extension
{
protected $request;
protected $router;
public function __construct(ContainerInterface $container)
{
$this->request = $container->get('request');
$this->router = $container->get('router');
}
public function getFunctions()
{
return array(
'localize_route' => new \Twig_Function_Method($this, 'executeLocalizeRoute', array()),
);
}
public function getName()
{
return 'localize_route_extension';
}
/**
* Execute the localize_route twig function. The function will return
* a localized route of the current uri retrieved from the request object.
*
* The function will replace the current locale in the route with the
* locale provided by the user via the twig function.
*
* Current uri: http://www.example.com/ru/current/path?with=query
*
* In Twig: {{ localize_route('en') }} => http://www.example.com/en/current/path?with=query
* {{ localize_route('fr') }} => http://www.example.com/fr/current/path?with=query
*
* @param mixed $parameters The parameters of the function
* @param string $name The name of the templating to render if needed
*
* @return Output a string representation of the current localized route
*/
public function executeLocalizeRoute($parameters = array(), $name = null)
{
$attributes = $this->request->attributes->all();
$query = $this->request->query->all();
$route = $attributes['_route'];
# This will add query parameters to attributes and filter out attributes starting with _
$attributes = array_merge($query, $this->filterPrivateKeys($attributes));
$attributes['_locale'] = $parameters !== null ? $parameters : \Locale::getDefault();
return $this->router->generate($route, $attributes);
}
/**
* This function will filter private keys from the attributes array. A
* private key is a key starting with an underscore (_). The filtered array is
* then returned.
*
* @param array $attributes The original attributes to filter out
* @return array The filtered array, the array withtout private keys
*/
private function filterPrivateKeys($attributes)
{
$filteredAttributes = array();
foreach ($attributes as $key => $value) {
if (!empty($key) && $key[0] != '_') {
$filteredAttributes[$key] = $value;
}
}
return $filteredAttributes;
}
}
、あなたのバンドルを介して、または直接app/config
下に配置config.yml
ファイルのどちらかにこのサービス定義をロードすることによって、この小枝の拡張機能を有効にすることができます。
services:
acme.twig.extension:
class: Acme\WebsiteBundle\Twig\Extension\LocalizeRouteExtension
scope: request
arguments:
request: "@request"
router: "@router"
tags:
- { name: twig.extension }
そして今、あなたは、現在ロードされたページの異なるバージョンを提案する小枝でこれを行うことができます。
<a id='englishLinkId' href="{{ localize_route('en') }}">
English
</a>
<a id='frenchLinkId' href="{{ localize_route('fr') }}">
Français
</a>
は、このことができますし、それはあなたが探しているものであると思います。
編集:
直接小枝延長の範囲を狭めることはできないようです。これを避けるには、依存関係コンテナをすべて注入してから、必要なサービスを取得します。これは、twig拡張のコンストラクタ定義と拡張のサービス定義を変更することによって反映されるべきです。以前の答えを編集し、新しい更新コンストラクタ定義と新しいサービス定義を確認しました。
もう1つの解決策は、ルートのローカライズを担当するヘルパーサービスを注入することです。このヘルパーサービスは要求スコープ内にある必要があります。実際、これは私が自分のコードで持っているものです。私はRoutingHelper
サービスをtwigの拡張機能に注入しました。その後、方法executeLocalizeRoute
では、私はハードワークをするために私のヘルパーを使用します。
すべてが動作しているかどうかを教えてください。
よろしく、
マット
は、魅力のように働き、100万人の男に感謝します! – Confidence