No Description

TranslationWriter.php 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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\Component\Translation\Writer;
  11. use Symfony\Component\Translation\MessageCatalogue;
  12. use Symfony\Component\Translation\Dumper\DumperInterface;
  13. /**
  14. * TranslationWriter writes translation messages.
  15. *
  16. * @author Michel Salib <michelsalib@hotmail.com>
  17. */
  18. class TranslationWriter
  19. {
  20. /**
  21. * Dumpers used for export.
  22. *
  23. * @var array
  24. */
  25. private $dumpers = array();
  26. /**
  27. * Adds a dumper to the writer.
  28. *
  29. * @param string $format The format of the dumper
  30. * @param DumperInterface $dumper The dumper
  31. */
  32. public function addDumper($format, DumperInterface $dumper)
  33. {
  34. $this->dumpers[$format] = $dumper;
  35. }
  36. /**
  37. * Disables dumper backup.
  38. */
  39. public function disableBackup()
  40. {
  41. foreach ($this->dumpers as $dumper) {
  42. $dumper->setBackup(false);
  43. }
  44. }
  45. /**
  46. * Obtains the list of supported formats.
  47. *
  48. * @return array
  49. */
  50. public function getFormats()
  51. {
  52. return array_keys($this->dumpers);
  53. }
  54. /**
  55. * Writes translation from the catalogue according to the selected format.
  56. *
  57. * @param MessageCatalogue $catalogue The message catalogue to dump
  58. * @param string $format The format to use to dump the messages
  59. * @param array $options Options that are passed to the dumper
  60. *
  61. * @throws \InvalidArgumentException
  62. */
  63. public function writeTranslations(MessageCatalogue $catalogue, $format, $options = array())
  64. {
  65. if (!isset($this->dumpers[$format])) {
  66. throw new \InvalidArgumentException(sprintf('There is no dumper associated with format "%s".', $format));
  67. }
  68. // get the right dumper
  69. $dumper = $this->dumpers[$format];
  70. if (isset($options['path']) && !is_dir($options['path'])) {
  71. mkdir($options['path'], 0777, true);
  72. }
  73. // save
  74. $dumper->dump($catalogue, $options);
  75. }
  76. }