composer package updates
[openemr.git] / vendor / symfony / translation / Dumper / IniFileDumper.php
blob9ed3754037fb534431feb7baf32286e2100f1348
1 <?php
3 /*
4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\Translation\Dumper;
14 use Symfony\Component\Translation\MessageCatalogue;
16 /**
17 * IniFileDumper generates an ini formatted string representation of a message catalogue.
19 * @author Stealth35
21 class IniFileDumper extends FileDumper
23 /**
24 * {@inheritdoc}
26 public function formatCatalogue(MessageCatalogue $messages, $domain, array $options = array())
28 $output = '';
30 foreach ($messages->all($domain) as $source => $target) {
31 $escapeTarget = str_replace('"', '\"', $target);
32 $output .= $source.'="'.$escapeTarget."\"\n";
35 return $output;
38 /**
39 * {@inheritdoc}
41 protected function getExtension()
43 return 'ini';