Хочу установить глобальный массив для манипулирования курсами валют во всех шаблонах twig.
Конфигурация: config.yml
twig:
#...
globals:
rate: '@crbr.currency_rate'
Регистрируем сервис
crbr.currency_rate:
class: CrbrBundle\Service\CurrencyRate
arguments:
- '@redcode.currency.rate.converter'
Сам севрис
<?php
namespace CrbrBundle\Service;
use Doctrine\ORM\EntityManager;
class CurrencyRate
{
public function __construct($currency)
{
$this->$converter = $currency;
}
public function getRate()
{
$rate = array();
$currencyDiff = $this->container->getParameter('currencyDiff');
$converter = $this->get('redcode.currency.rate.converter');
$rate['usd'] = $this->convert('USD', 'RUB', 1) + $currencyDiff;
$rate['jpy'] = $this->convert('JPY', 'RUB', 1) * 100 + $currencyDiff;
return $rate;
}
}
Собственно вопрос как в моем конфиге установки
globals:
rate: Правильно передать значение rate вызвав мой сервис с нужным экшеном?