Conditions | 12 |
Paths | 580 |
Total Lines | 78 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php |
||
16 | public static function toString(Translations $translations, array $options = []) |
||
17 | { |
||
18 | $dom = new DOMDocument('1.0', 'utf-8'); |
||
19 | $dom->formatOutput = true; |
||
20 | $xliff = $dom->appendChild($dom->createElement('xliff')); |
||
21 | $xliff->setAttribute('xmlns', 'urn:oasis:names:tc:xliff:document:2.0'); |
||
22 | $xliff->setAttribute('version', '2.0'); |
||
23 | $xliff->setAttribute('srcLang', $translations->getLanguage()); |
||
24 | $xliff->setAttribute('trgLang', $translations->getLanguage()); |
||
25 | $file = $xliff->appendChild($dom->createElement('file')); |
||
26 | $file->setAttribute('id', $translations->getDomain().'.'.$translations->getLanguage()); |
||
27 | |||
28 | //Save headers as notes |
||
29 | $notes = $dom->createElement('notes'); |
||
30 | |||
31 | foreach ($translations->getHeaders() as $name => $value) { |
||
32 | $notes->appendChild(self::createTextNode($dom, 'note', $value))->setAttribute('id', $name); |
||
33 | } |
||
34 | |||
35 | if ($notes->hasChildNodes()) { |
||
36 | $file->appendChild($notes); |
||
37 | } |
||
38 | |||
39 | foreach ($translations as $translation) { |
||
40 | //Find an XLIFF unit ID, if one is available; otherwise generate |
||
41 | $unitId = self::getUnitID($translation)?:md5($translation->getContext().$translation->getOriginal()); |
||
42 | |||
43 | $unit = $dom->createElement('unit'); |
||
44 | $unit->setAttribute('id', $unitId); |
||
45 | |||
46 | //Save comments as notes |
||
47 | $notes = $dom->createElement('notes'); |
||
48 | |||
49 | $notes->appendChild(self::createTextNode($dom, 'note', $translation->getContext())) |
||
50 | ->setAttribute('category', 'context'); |
||
51 | |||
52 | foreach ($translation->getComments() as $comment) { |
||
53 | //Skip XLIFF unit ID comments. |
||
54 | if (preg_match(self::UNIT_ID_REGEXP, $comment)) { |
||
55 | continue; |
||
56 | } |
||
57 | |||
58 | $notes->appendChild(self::createTextNode($dom, 'note', $comment)) |
||
59 | ->setAttribute('category', 'comment'); |
||
60 | } |
||
61 | |||
62 | foreach ($translation->getExtractedComments() as $comment) { |
||
63 | $notes->appendChild(self::createTextNode($dom, 'note', $comment)) |
||
64 | ->setAttribute('category', 'extracted-comment'); |
||
65 | } |
||
66 | |||
67 | foreach ($translation->getFlags() as $flag) { |
||
68 | $notes->appendChild(self::createTextNode($dom, 'note', $flag)) |
||
69 | ->setAttribute('category', 'flag'); |
||
70 | } |
||
71 | |||
72 | foreach ($translation->getReferences() as $reference) { |
||
73 | $notes->appendChild(self::createTextNode($dom, 'note', $reference[0].':'.$reference[1])) |
||
74 | ->setAttribute('category', 'reference'); |
||
75 | } |
||
76 | |||
77 | $unit->appendChild($notes); |
||
78 | |||
79 | $segment = $unit->appendChild($dom->createElement('segment')); |
||
80 | $segment->appendChild(self::createTextNode($dom, 'source', $translation->getOriginal())); |
||
81 | $segment->appendChild(self::createTextNode($dom, 'target', $translation->getTranslation())); |
||
82 | |||
83 | foreach ($translation->getPluralTranslations() as $plural) { |
||
84 | if ($plural !== '') { |
||
85 | $segment->appendChild(self::createTextNode($dom, 'target', $plural)); |
||
86 | } |
||
87 | } |
||
88 | |||
89 | $file->appendChild($unit); |
||
90 | } |
||
91 | |||
92 | return $dom->saveXML(); |
||
93 | } |
||
94 | |||
123 |