@@ -29,25 +29,25 @@ |
||
| 29 | 29 | $output = ''; |
| 30 | 30 | // NAME |
| 31 | 31 | $_famc = $famc->getFams(); |
| 32 | - if(empty($_fams)){ |
|
| 32 | + if (empty($_fams)) { |
|
| 33 | 33 | return $output; |
| 34 | 34 | } |
| 35 | - $output.= $level." FAMC @".$_famc."@\n"; |
|
| 35 | + $output .= $level." FAMC @".$_famc."@\n"; |
|
| 36 | 36 | // level up |
| 37 | 37 | $level++; |
| 38 | 38 | |
| 39 | 39 | // PEDI |
| 40 | 40 | $pedi = $famc->getPedi(); |
| 41 | - if(!empty($pedi)){ |
|
| 42 | - $output.=$level." PEDI ".$pedi."\n"; |
|
| 41 | + if (!empty($pedi)) { |
|
| 42 | + $output .= $level." PEDI ".$pedi."\n"; |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | // note |
| 46 | 46 | $note = $famc->getSour(); |
| 47 | - if(!empty($note) && count($note) > 0){ |
|
| 48 | - foreach($note as $item){ |
|
| 47 | + if (!empty($note) && count($note) > 0) { |
|
| 48 | + foreach ($note as $item) { |
|
| 49 | 49 | $_convert = \PhpGedcom\Writer\NoteRef::convert($item, $level); |
| 50 | - $output.=$_convert; |
|
| 50 | + $output .= $_convert; |
|
| 51 | 51 | } |
| 52 | 52 | } |
| 53 | 53 | |
@@ -29,33 +29,33 @@ |
||
| 29 | 29 | $output = ''; |
| 30 | 30 | // _indi |
| 31 | 31 | $_indi = $asso->getIndi(); |
| 32 | - if(empty($_indi)){ |
|
| 32 | + if (empty($_indi)) { |
|
| 33 | 33 | return $output; |
| 34 | 34 | } |
| 35 | - $output.= $level." ASSO ".$_indi."\n"; |
|
| 35 | + $output .= $level." ASSO ".$_indi."\n"; |
|
| 36 | 36 | // level up |
| 37 | 37 | $level++; |
| 38 | 38 | |
| 39 | 39 | // RELA |
| 40 | 40 | $rela = $asso->getRela(); |
| 41 | - if(!empty($rela)){ |
|
| 42 | - $output.=$level." RELA ".$rela."\n"; |
|
| 41 | + if (!empty($rela)) { |
|
| 42 | + $output .= $level." RELA ".$rela."\n"; |
|
| 43 | 43 | } |
| 44 | 44 | // sour |
| 45 | 45 | $sour = $asso->getSour(); |
| 46 | - if(!empty($sour) && count($sour) > 0){ |
|
| 47 | - foreach($sour as $item){ |
|
| 46 | + if (!empty($sour) && count($sour) > 0) { |
|
| 47 | + foreach ($sour as $item) { |
|
| 48 | 48 | $_convert = \PhpGedcom\Writer\SourRef::convert($item, $level); |
| 49 | - $output.=$_convert; |
|
| 49 | + $output .= $_convert; |
|
| 50 | 50 | } |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | // note |
| 54 | 54 | $note = $asso->getSour(); |
| 55 | - if(!empty($note) && count($note) > 0){ |
|
| 56 | - foreach($note as $item){ |
|
| 55 | + if (!empty($note) && count($note) > 0) { |
|
| 56 | + foreach ($note as $item) { |
|
| 57 | 57 | $_convert = \PhpGedcom\Writer\NoteRef::convert($item, $level); |
| 58 | - $output.=$_convert; |
|
| 58 | + $output .= $_convert; |
|
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | 61 | |
@@ -30,9 +30,9 @@ discard block |
||
| 30 | 30 | |
| 31 | 31 | // $plac |
| 32 | 32 | $_plac = $plac->getPlac(); |
| 33 | - if(!empty($_plac)){ |
|
| 33 | + if (!empty($_plac)) { |
|
| 34 | 34 | $output .= $level." PLAC ".$_plac."\n"; |
| 35 | - }else{ |
|
| 35 | + } else { |
|
| 36 | 36 | $output .= $level." PLAC\n"; |
| 37 | 37 | } |
| 38 | 38 | |
@@ -41,24 +41,24 @@ discard block |
||
| 41 | 41 | |
| 42 | 42 | // $form |
| 43 | 43 | $form = $plac->getForm(); |
| 44 | - if(!empty($form)){ |
|
| 44 | + if (!empty($form)) { |
|
| 45 | 45 | $output .= $level." FORM ".$form."\n"; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | // $note -array |
| 49 | 49 | $note = $plac->getNote(); |
| 50 | - if($note && count($note) > 0){ |
|
| 51 | - foreach($note as $item){ |
|
| 50 | + if ($note && count($note) > 0) { |
|
| 51 | + foreach ($note as $item) { |
|
| 52 | 52 | $_convert = \PhpGedcom\Writer\NoteRef::convert($item, $level); |
| 53 | - $output.= $_convert; |
|
| 53 | + $output .= $_convert; |
|
| 54 | 54 | } |
| 55 | 55 | } |
| 56 | 56 | // $sour -array |
| 57 | 57 | $sour = $plac->getSour(); |
| 58 | - if($sour && count($sour) > 0){ |
|
| 59 | - foreach($sour as $item){ |
|
| 58 | + if ($sour && count($sour) > 0) { |
|
| 59 | + foreach ($sour as $item) { |
|
| 60 | 60 | $_convert = \PhpGedcom\Writer\SourRef::convert($item, $level); |
| 61 | - $output.= $_convert; |
|
| 61 | + $output .= $_convert; |
|
| 62 | 62 | } |
| 63 | 63 | } |
| 64 | 64 | return $output; |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $_plac = $plac->getPlac(); |
| 33 | 33 | if(!empty($_plac)){ |
| 34 | 34 | $output .= $level." PLAC ".$_plac."\n"; |
| 35 | - }else{ |
|
| 35 | + } else{ |
|
| 36 | 36 | $output .= $level." PLAC\n"; |
| 37 | 37 | } |
| 38 | 38 | |
@@ -30,63 +30,63 @@ discard block |
||
| 30 | 30 | |
| 31 | 31 | // $_attr; |
| 32 | 32 | $attr = $even->getAttr(); |
| 33 | - if(!empty($attr)){ |
|
| 34 | - $output.=$level." EVEN ".$attr."\n"; |
|
| 35 | - }else{ |
|
| 33 | + if (!empty($attr)) { |
|
| 34 | + $output .= $level." EVEN ".$attr."\n"; |
|
| 35 | + } else { |
|
| 36 | 36 | $output = $level." EVEN\n"; |
| 37 | 37 | } |
| 38 | 38 | $level++; |
| 39 | 39 | |
| 40 | 40 | // $type; |
| 41 | 41 | $type = $even->getType(); |
| 42 | - if(!empty($type)){ |
|
| 43 | - $output.=$level." TYPE ".$type."\n"; |
|
| 42 | + if (!empty($type)) { |
|
| 43 | + $output .= $level." TYPE ".$type."\n"; |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | // $date; |
| 47 | 47 | $date = $even->getDate(); |
| 48 | - if(!empty($date)){ |
|
| 49 | - $output.=$level." DATE ".$date."\n"; |
|
| 48 | + if (!empty($date)) { |
|
| 49 | + $output .= $level." DATE ".$date."\n"; |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | // Plac |
| 53 | 53 | $plac = $even->getPlac(); |
| 54 | - if(!empty($plac)){ |
|
| 54 | + if (!empty($plac)) { |
|
| 55 | 55 | $_convert = \PhpGedcom\Writer\Indi\Even\Plac::convert($plac, $level); |
| 56 | - $output.=$_convert; |
|
| 56 | + $output .= $_convert; |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | // $caus; |
| 60 | 60 | $caus = $even->getCaus(); |
| 61 | - if(!empty($caus)){ |
|
| 62 | - $output.=$level." CAUS ".$caus."\n"; |
|
| 61 | + if (!empty($caus)) { |
|
| 62 | + $output .= $level." CAUS ".$caus."\n"; |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | // $age; |
| 66 | 66 | $age = $even->getAge(); |
| 67 | - if(!empty($age)){ |
|
| 68 | - $output.=$level." AGE ".$age."\n"; |
|
| 67 | + if (!empty($age)) { |
|
| 68 | + $output .= $level." AGE ".$age."\n"; |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | // $addr |
| 72 | 72 | $addr = $even->getAddr(); |
| 73 | - if(!empty($addr)){ |
|
| 73 | + if (!empty($addr)) { |
|
| 74 | 74 | $_convert = \PhpGedcom\Writer\Addr::convert($addr, $level); |
| 75 | - $output.=$_convert; |
|
| 75 | + $output .= $_convert; |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | // $phon = array() |
| 79 | 79 | $phon = $even->getPhon(); |
| 80 | - if(!empty($phon) && count($phon) > 0){ |
|
| 81 | - foreach($phon as $item){ |
|
| 80 | + if (!empty($phon) && count($phon) > 0) { |
|
| 81 | + foreach ($phon as $item) { |
|
| 82 | 82 | $_convert = \PhpGedcom\Writer\Phon::convert($item, $level); |
| 83 | - $output.=$_convert; |
|
| 83 | + $output .= $_convert; |
|
| 84 | 84 | } |
| 85 | 85 | } |
| 86 | 86 | // $agnc |
| 87 | 87 | $agnc = $even->getAgnc(); |
| 88 | - if(!empty($agnc)){ |
|
| 89 | - $output.=$level." AGNC ".$agnc."\n"; |
|
| 88 | + if (!empty($agnc)) { |
|
| 89 | + $output .= $level." AGNC ".$agnc."\n"; |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | // $ref = array(); |
@@ -94,33 +94,33 @@ discard block |
||
| 94 | 94 | |
| 95 | 95 | // $obje = array(); |
| 96 | 96 | $obje = $even->getObje(); |
| 97 | - if(!empty($obje) && count($obje) > 0){ |
|
| 98 | - foreach($obje as $item){ |
|
| 97 | + if (!empty($obje) && count($obje) > 0) { |
|
| 98 | + foreach ($obje as $item) { |
|
| 99 | 99 | $_convert = \PhpGedcom\Writer\ObjeRef::convert($item, $level); |
| 100 | - $output.=$_convert; |
|
| 100 | + $output .= $_convert; |
|
| 101 | 101 | } |
| 102 | 102 | } |
| 103 | 103 | // $sour = array(); |
| 104 | 104 | $sour = $even->getSour(); |
| 105 | - if(!empty($sour) && count($sour) > 0){ |
|
| 106 | - foreach($sour as $item){ |
|
| 105 | + if (!empty($sour) && count($sour) > 0) { |
|
| 106 | + foreach ($sour as $item) { |
|
| 107 | 107 | $_convert = \PhpGedcom\Writer\SourRef::convert($item, $level); |
| 108 | - $output.=$_convert; |
|
| 108 | + $output .= $_convert; |
|
| 109 | 109 | } |
| 110 | 110 | } |
| 111 | 111 | // $note = array(); |
| 112 | 112 | $note = $even->getSour(); |
| 113 | - if(!empty($note) && count($note) > 0){ |
|
| 114 | - foreach($note as $item){ |
|
| 113 | + if (!empty($note) && count($note) > 0) { |
|
| 114 | + foreach ($note as $item) { |
|
| 115 | 115 | $_convert = \PhpGedcom\Writer\NoteRef::convert($item, $level); |
| 116 | - $output.=$_convert; |
|
| 116 | + $output .= $_convert; |
|
| 117 | 117 | } |
| 118 | 118 | } |
| 119 | 119 | // Record\Chan |
| 120 | 120 | $chan = $even->getChan(); |
| 121 | - if(!empty($chan) ){ |
|
| 121 | + if (!empty($chan)) { |
|
| 122 | 122 | $_convert = \PhpGedcom\Writer\Chan::convert($item, $level); |
| 123 | - $output.=$_convert; |
|
| 123 | + $output .= $_convert; |
|
| 124 | 124 | } |
| 125 | 125 | return $output; |
| 126 | 126 | } |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $attr = $even->getAttr(); |
| 33 | 33 | if(!empty($attr)){ |
| 34 | 34 | $output.=$level." EVEN ".$attr."\n"; |
| 35 | - }else{ |
|
| 35 | + } else{ |
|
| 36 | 36 | $output = $level." EVEN\n"; |
| 37 | 37 | } |
| 38 | 38 | $level++; |
@@ -29,58 +29,58 @@ |
||
| 29 | 29 | $output = ''; |
| 30 | 30 | // NAME |
| 31 | 31 | $_name = $name->getName(); |
| 32 | - if(empty($_name)){ |
|
| 32 | + if (empty($_name)) { |
|
| 33 | 33 | return $output; |
| 34 | 34 | } |
| 35 | - $output.= $level." NAME ".$_name."\n"; |
|
| 35 | + $output .= $level." NAME ".$_name."\n"; |
|
| 36 | 36 | // level up |
| 37 | 37 | $level++; |
| 38 | 38 | |
| 39 | 39 | // NPFX |
| 40 | 40 | $npfx = $name->getNpfx(); |
| 41 | - if(!empty($npfx)){ |
|
| 42 | - $output.=$level." NPFX ".$npfx."\n"; |
|
| 41 | + if (!empty($npfx)) { |
|
| 42 | + $output .= $level." NPFX ".$npfx."\n"; |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | // GIVN |
| 46 | 46 | $givn = $name->getGivn(); |
| 47 | - if(!empty($givn)){ |
|
| 48 | - $output.=$level." GIVN ".$givn."\n"; |
|
| 47 | + if (!empty($givn)) { |
|
| 48 | + $output .= $level." GIVN ".$givn."\n"; |
|
| 49 | 49 | } |
| 50 | 50 | // NICK |
| 51 | 51 | $nick = $name->getNick(); |
| 52 | - if(!empty($nick)){ |
|
| 53 | - $output.=$level." NICK ".$nick."\n"; |
|
| 52 | + if (!empty($nick)) { |
|
| 53 | + $output .= $level." NICK ".$nick."\n"; |
|
| 54 | 54 | } |
| 55 | 55 | // SPFX |
| 56 | 56 | $spfx = $name->getSpfx(); |
| 57 | - if(!empty($spfx)){ |
|
| 58 | - $output.=$level." SPFX ".$spfx."\n"; |
|
| 57 | + if (!empty($spfx)) { |
|
| 58 | + $output .= $level." SPFX ".$spfx."\n"; |
|
| 59 | 59 | } |
| 60 | 60 | // SURN |
| 61 | 61 | $surn = $name->getSurn(); |
| 62 | - if(!empty($surn)){ |
|
| 63 | - $output.=$level." SURN ".$surn."\n"; |
|
| 62 | + if (!empty($surn)) { |
|
| 63 | + $output .= $level." SURN ".$surn."\n"; |
|
| 64 | 64 | } |
| 65 | 65 | // NSFX |
| 66 | 66 | $nsfx = $name->getNsfx(); |
| 67 | - if(!empty($nsfx)){ |
|
| 68 | - $output.=$level." NSFX ".$nsfx."\n"; |
|
| 67 | + if (!empty($nsfx)) { |
|
| 68 | + $output .= $level." NSFX ".$nsfx."\n"; |
|
| 69 | 69 | } |
| 70 | 70 | // SOUR |
| 71 | 71 | $sour = $name->getSour(); |
| 72 | - if(!empty($sour) && count($sour) > 0){ |
|
| 73 | - foreach($sour as $item){ |
|
| 72 | + if (!empty($sour) && count($sour) > 0) { |
|
| 73 | + foreach ($sour as $item) { |
|
| 74 | 74 | $_convert = \PhpGedcom\Writer\SourRef::convert($item, $level); |
| 75 | - $output.=$_convert; |
|
| 75 | + $output .= $_convert; |
|
| 76 | 76 | } |
| 77 | 77 | } |
| 78 | 78 | // note |
| 79 | 79 | $note = $name->getSour(); |
| 80 | - if(!empty($note) && count($note) > 0){ |
|
| 81 | - foreach($note as $item){ |
|
| 80 | + if (!empty($note) && count($note) > 0) { |
|
| 81 | + foreach ($note as $item) { |
|
| 82 | 82 | $_convert = \PhpGedcom\Writer\NoteRef::convert($item, $level); |
| 83 | - $output.=$_convert; |
|
| 83 | + $output .= $_convert; |
|
| 84 | 84 | } |
| 85 | 85 | } |
| 86 | 86 | |
@@ -29,19 +29,19 @@ |
||
| 29 | 29 | $output = ''; |
| 30 | 30 | // NAME |
| 31 | 31 | $_fams = $fams->getFams(); |
| 32 | - if(empty($_fams)){ |
|
| 32 | + if (empty($_fams)) { |
|
| 33 | 33 | return $output; |
| 34 | 34 | } |
| 35 | - $output.= $level." FAMS @".$_fams."@\n"; |
|
| 35 | + $output .= $level." FAMS @".$_fams."@\n"; |
|
| 36 | 36 | // level up |
| 37 | 37 | $level++; |
| 38 | 38 | |
| 39 | 39 | // note |
| 40 | 40 | $note = $fams->getNote(); |
| 41 | - if(!empty($note) && count($note) > 0){ |
|
| 42 | - foreach($note as $item){ |
|
| 41 | + if (!empty($note) && count($note) > 0) { |
|
| 42 | + foreach ($note as $item) { |
|
| 43 | 43 | $_convert = \PhpGedcom\Writer\NoteRef::convert($item, $level); |
| 44 | - $output.=$_convert; |
|
| 44 | + $output .= $_convert; |
|
| 45 | 45 | } |
| 46 | 46 | } |
| 47 | 47 | |
@@ -29,9 +29,9 @@ discard block |
||
| 29 | 29 | $level = 0; |
| 30 | 30 | $output = ""; |
| 31 | 31 | $id = $note->getId(); |
| 32 | - if(!empty($id)){ |
|
| 33 | - $output.= $level." ".$id." "." NOTE \n"; |
|
| 34 | - }else{ |
|
| 32 | + if (!empty($id)) { |
|
| 33 | + $output .= $level." ".$id." "." NOTE \n"; |
|
| 34 | + } else { |
|
| 35 | 35 | return $output; |
| 36 | 36 | } |
| 37 | 37 | |
@@ -39,40 +39,40 @@ discard block |
||
| 39 | 39 | $level++; |
| 40 | 40 | // RIN |
| 41 | 41 | $rin = $note->getRin(); |
| 42 | - if($rin){ |
|
| 43 | - $output.=$level." RIN ".$rin."\n"; |
|
| 42 | + if ($rin) { |
|
| 43 | + $output .= $level." RIN ".$rin."\n"; |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | // cont |
| 47 | 47 | $cont = $note->getNote(); |
| 48 | - if($cont){ |
|
| 49 | - $output.=$level." CONT ".$cont."\n"; |
|
| 48 | + if ($cont) { |
|
| 49 | + $output .= $level." CONT ".$cont."\n"; |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | // REFN |
| 53 | 53 | $refn = $note->getRefn(); |
| 54 | - if(!empty($refn) && count($refn) > 0) { |
|
| 55 | - foreach($refn as $item){ |
|
| 56 | - if($item){ |
|
| 54 | + if (!empty($refn) && count($refn) > 0) { |
|
| 55 | + foreach ($refn as $item) { |
|
| 56 | + if ($item) { |
|
| 57 | 57 | $_convert = \PhpGedcom\Writer\Refn::convert($item, $level); |
| 58 | - $output.=$_convert; |
|
| 58 | + $output .= $_convert; |
|
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | 61 | } |
| 62 | 62 | // CHAN |
| 63 | 63 | $chan = $note->getChan(); |
| 64 | - if($chan){ |
|
| 64 | + if ($chan) { |
|
| 65 | 65 | $_convert = \PhpGedcom\Writer\Chan::convert($chan, $level); |
| 66 | - $output.=$_convert; |
|
| 66 | + $output .= $_convert; |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | // SOUR array |
| 70 | 70 | $sour = $note->getSour(); |
| 71 | - if(!empty($sour) && count($sour) > 0) { |
|
| 72 | - foreach($sour as $item){ |
|
| 73 | - if($item){ |
|
| 71 | + if (!empty($sour) && count($sour) > 0) { |
|
| 72 | + foreach ($sour as $item) { |
|
| 73 | + if ($item) { |
|
| 74 | 74 | $_convert = \PhpGedcom\Writer\SourRef::convert($item, $level); |
| 75 | - $output.=$_convert; |
|
| 75 | + $output .= $_convert; |
|
| 76 | 76 | } |
| 77 | 77 | } |
| 78 | 78 | } |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | $id = $note->getId(); |
| 32 | 32 | if(!empty($id)){ |
| 33 | 33 | $output.= $level." ".$id." "." NOTE \n"; |
| 34 | - }else{ |
|
| 34 | + } else{ |
|
| 35 | 35 | return $output; |
| 36 | 36 | } |
| 37 | 37 | |
@@ -29,17 +29,17 @@ |
||
| 29 | 29 | |
| 30 | 30 | $output = ""; |
| 31 | 31 | $_refn = $refn->getRefn(); |
| 32 | - if(empty($_refn)){ |
|
| 32 | + if (empty($_refn)) { |
|
| 33 | 33 | return $output; |
| 34 | - }else{ |
|
| 35 | - $output.=$level." REFN ".$_refn."\n"; |
|
| 34 | + } else { |
|
| 35 | + $output .= $level." REFN ".$_refn."\n"; |
|
| 36 | 36 | } |
| 37 | 37 | // level up |
| 38 | 38 | $level++; |
| 39 | 39 | // DATE |
| 40 | 40 | $type = $refn->getType(); |
| 41 | - if(!empty($type)){ |
|
| 42 | - $output.=$level." TYPE ".$type."\n"; |
|
| 41 | + if (!empty($type)) { |
|
| 42 | + $output .= $level." TYPE ".$type."\n"; |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | return $output; |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | $_refn = $refn->getRefn(); |
| 32 | 32 | if(empty($_refn)){ |
| 33 | 33 | return $output; |
| 34 | - }else{ |
|
| 34 | + } else{ |
|
| 35 | 35 | $output.=$level." REFN ".$_refn."\n"; |
| 36 | 36 | } |
| 37 | 37 | // level up |
@@ -30,17 +30,17 @@ |
||
| 30 | 30 | |
| 31 | 31 | // $_note |
| 32 | 32 | $_note = $note->getNote(); |
| 33 | - if(!empty($_note)){ |
|
| 34 | - $output.=$level." NOTE ".$_note."\n"; |
|
| 33 | + if (!empty($_note)) { |
|
| 34 | + $output .= $level." NOTE ".$_note."\n"; |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | $level++; |
| 38 | 38 | // $sour |
| 39 | 39 | $sour = $note->getSour(); |
| 40 | - if($sour && count($sour) > 0){ |
|
| 41 | - foreach($sour as $item){ |
|
| 40 | + if ($sour && count($sour) > 0) { |
|
| 41 | + foreach ($sour as $item) { |
|
| 42 | 42 | $_convert = \PhpGedcom\Writer\SourRef::convert($item, $level); |
| 43 | - $output.=$_convert; |
|
| 43 | + $output .= $_convert; |
|
| 44 | 44 | } |
| 45 | 45 | } |
| 46 | 46 | return $output; |