12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler;
- use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
- use Symfony\Component\DependencyInjection\ContainerBuilder;
- use Symfony\Component\DependencyInjection\Reference;
- /**
- * @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
- */
- class LoggingTranslatorPass implements CompilerPassInterface
- {
- public function process(ContainerBuilder $container)
- {
- if (!$container->hasAlias('logger') || !$container->hasAlias('translator')) {
- return;
- }
- if ($container->hasParameter('translator.logging') && $container->getParameter('translator.logging')) {
- $translatorAlias = $container->getAlias('translator');
- $definition = $container->getDefinition((string) $translatorAlias);
- $class = $container->getParameterBag()->resolveValue($definition->getClass());
- if (is_subclass_of($class, 'Symfony\Component\Translation\TranslatorInterface') && is_subclass_of($class, 'Symfony\Component\Translation\TranslatorBagInterface')) {
- $container->getDefinition('translator.logging')->setDecoratedService('translator');
- $container->getDefinition('translation.warmer')->replaceArgument(0, new Reference('translator.logging.inner'));
- }
- }
- }
- }
|