This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/FrameworkBundle/Translation/Translator.php

123 lines
3.6 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bundle\FrameworkBundle\Translation;
use Symfony\Component\Translation\Translator as BaseTranslator;
use Symfony\Component\Translation\Loader\LoaderInterface;
use Symfony\Component\Translation\MessageSelector;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Session;
use Symfony\Component\Config\ConfigCache;
/**
* Translator.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Translator extends BaseTranslator
{
protected $container;
protected $options;
protected $session;
/**
* Constructor.
*
* Available options:
*
* * cache_dir: The cache directory (or null to disable caching)
* * debug: Whether to enable debugging or not (false by default)
*
* @param ContainerInterface $container A ContainerInterface instance
* @param MessageSelector $selector The message selector for pluralization
* @param array $options An array of options
* @param Session $session A Session instance
*/
public function __construct(ContainerInterface $container, MessageSelector $selector, array $options = array(), Session $session = null)
{
2010-10-06 15:33:39 +01:00
parent::__construct(null, $selector);
$this->session = $session;
$this->container = $container;
$this->options = array(
'cache_dir' => null,
'debug' => false,
);
// check option names
if ($diff = array_diff(array_keys($options), array_keys($this->options))) {
throw new \InvalidArgumentException(sprintf('The Router does not support the following options: \'%s\'.', implode('\', \'', $diff)));
}
$this->options = array_merge($this->options, $options);
}
/**
* {@inheritdoc}
*/
public function getLocale()
{
if (null === $this->locale && null !== $this->session) {
$this->locale = $this->session->getLocale();
}
return $this->locale;
}
/**
* {@inheritdoc}
*/
protected function loadCatalogue($locale)
{
if (isset($this->catalogues[$locale])) {
return;
}
if (null === $this->options['cache_dir']) {
$this->initialize();
return parent::loadCatalogue($locale);
}
$cache = new ConfigCache($this->options['cache_dir'], 'catalogue.'.$locale, $this->options['debug']);
if (!$cache->isFresh()) {
$this->initialize();
parent::loadCatalogue($locale);
$content = sprintf(
"<?php use Symfony\Component\Translation\MessageCatalogue; return new MessageCatalogue('%s', %s);",
$locale,
var_export($this->catalogues[$locale]->all(), true)
));
$cache->write($content, $this->catalogues[$locale]->getResources());
return;
}
$this->catalogues[$locale] = include $cache;
}
protected function initialize()
{
foreach ($this->container->getParameter('translation.loaders') as $id => $alias) {
$this->addLoader($alias, $this->container->get($id));
}
foreach ($this->container->getParameter('translation.resources') as $resource) {
$this->addResource($resource[0], $resource[1], $resource[2], $resource[3]);
}
}
}