blob: 0c8589af81d790153fa10ab5726a72f1a02c2c56 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Symfony\Component\Translation\Dumper;
13
14use Symfony\Component\Translation\MessageCatalogue;
15
16/**
17 * CsvFileDumper generates a csv formatted string representation of a message catalogue.
18 *
19 * @author Stealth35
20 */
21class CsvFileDumper extends FileDumper
22{
23 private $delimiter = ';';
24 private $enclosure = '"';
25
26 /**
27 * {@inheritdoc}
28 */
29 public function formatCatalogue(MessageCatalogue $messages, string $domain, array $options = [])
30 {
31 $handle = fopen('php://memory', 'r+');
32
33 foreach ($messages->all($domain) as $source => $target) {
34 fputcsv($handle, [$source, $target], $this->delimiter, $this->enclosure);
35 }
36
37 rewind($handle);
38 $output = stream_get_contents($handle);
39 fclose($handle);
40
41 return $output;
42 }
43
44 /**
45 * Sets the delimiter and escape character for CSV.
46 */
47 public function setCsvControl(string $delimiter = ';', string $enclosure = '"')
48 {
49 $this->delimiter = $delimiter;
50 $this->enclosure = $enclosure;
51 }
52
53 /**
54 * {@inheritdoc}
55 */
56 protected function getExtension()
57 {
58 return 'csv';
59 }
60}