TranslationDumperPass.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler;
  11. use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
  12. use Symfony\Component\DependencyInjection\ContainerBuilder;
  13. use Symfony\Component\DependencyInjection\Reference;
  14. /**
  15. * Adds tagged translation.formatter services to translation writer.
  16. */
  17. class TranslationDumperPass implements CompilerPassInterface
  18. {
  19. public function process(ContainerBuilder $container)
  20. {
  21. if (!$container->hasDefinition('translation.writer')) {
  22. return;
  23. }
  24. $definition = $container->getDefinition('translation.writer');
  25. foreach ($container->findTaggedServiceIds('translation.dumper') as $id => $attributes) {
  26. $definition->addMethodCall('addDumper', array($attributes[0]['alias'], new Reference($id)));
  27. }
  28. }
  29. }