class XliffFileDumper in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/translation/Dumper/XliffFileDumper.php \Symfony\Component\Translation\Dumper\XliffFileDumper
XliffFileDumper generates xliff files from a message catalogue.
@author Michel Salib <michelsalib@hotmail.com>
Hierarchy
- class \Symfony\Component\Translation\Dumper\FileDumper implements DumperInterface
- class \Symfony\Component\Translation\Dumper\XliffFileDumper
Expanded class hierarchy of XliffFileDumper
1 file declares its use of XliffFileDumper
- XliffFileDumperTest.php in vendor/
symfony/ translation/ Tests/ Dumper/ XliffFileDumperTest.php
File
- vendor/
symfony/ translation/ Dumper/ XliffFileDumper.php, line 21
Namespace
Symfony\Component\Translation\DumperView source
class XliffFileDumper extends FileDumper {
/**
* @var string
*/
private $defaultLocale;
/**
* {@inheritdoc}
*/
public function dump(MessageCatalogue $messages, $options = array()) {
if (array_key_exists('default_locale', $options)) {
$this->defaultLocale = $options['default_locale'];
}
else {
$this->defaultLocale = \Locale::getDefault();
}
parent::dump($messages, $options);
}
/**
* {@inheritdoc}
*/
protected function format(MessageCatalogue $messages, $domain) {
$dom = new \DOMDocument('1.0', 'utf-8');
$dom->formatOutput = true;
$xliff = $dom
->appendChild($dom
->createElement('xliff'));
$xliff
->setAttribute('version', '1.2');
$xliff
->setAttribute('xmlns', 'urn:oasis:names:tc:xliff:document:1.2');
$xliffFile = $xliff
->appendChild($dom
->createElement('file'));
$xliffFile
->setAttribute('source-language', str_replace('_', '-', $this->defaultLocale));
$xliffFile
->setAttribute('target-language', str_replace('_', '-', $messages
->getLocale()));
$xliffFile
->setAttribute('datatype', 'plaintext');
$xliffFile
->setAttribute('original', 'file.ext');
$xliffBody = $xliffFile
->appendChild($dom
->createElement('body'));
foreach ($messages
->all($domain) as $source => $target) {
$translation = $dom
->createElement('trans-unit');
$translation
->setAttribute('id', md5($source));
$translation
->setAttribute('resname', $source);
$s = $translation
->appendChild($dom
->createElement('source'));
$s
->appendChild($dom
->createTextNode($source));
// Does the target contain characters requiring a CDATA section?
$text = 1 === preg_match('/[&<>]/', $target) ? $dom
->createCDATASection($target) : $dom
->createTextNode($target);
$t = $translation
->appendChild($dom
->createElement('target'));
$t
->appendChild($text);
$metadata = $messages
->getMetadata($source, $domain);
if (null !== $metadata && array_key_exists('notes', $metadata) && is_array($metadata['notes'])) {
foreach ($metadata['notes'] as $note) {
if (!isset($note['content'])) {
continue;
}
$n = $translation
->appendChild($dom
->createElement('note'));
$n
->appendChild($dom
->createTextNode($note['content']));
if (isset($note['priority'])) {
$n
->setAttribute('priority', $note['priority']);
}
if (isset($note['from'])) {
$n
->setAttribute('from', $note['from']);
}
}
}
$xliffBody
->appendChild($translation);
}
return $dom
->saveXML();
}
/**
* {@inheritdoc}
*/
protected function getExtension() {
return 'xlf';
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FileDumper:: |
private | property | Make file backup before the dump. | |
FileDumper:: |
protected | property | A template for the relative paths to files. | 1 |
FileDumper:: |
private | function | Gets the relative file path using the template. | |
FileDumper:: |
public | function | Sets backup flag. | |
FileDumper:: |
public | function | Sets the template for the relative paths to files. | |
XliffFileDumper:: |
private | property | ||
XliffFileDumper:: |
public | function |
Dumps the message catalogue. Overrides FileDumper:: |
|
XliffFileDumper:: |
protected | function |
Transforms a domain of a message catalogue to its string representation. Overrides FileDumper:: |
|
XliffFileDumper:: |
protected | function |
Gets the file extension of the dumper. Overrides FileDumper:: |