Conditions | 3 |
Paths | 3 |
Total Lines | 19 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public static function convert(\Gedcom\Record\Head\Date &$date, $level) |
||
26 | { |
||
27 | $output = ''; |
||
28 | $_date = $date->getDate(); |
||
|
|||
29 | if ($_date) { |
||
30 | $output .= $level.' DATE '.$_date."\n"; |
||
31 | } else { |
||
32 | return $output; |
||
33 | } |
||
34 | |||
35 | // level up |
||
36 | $level++; |
||
37 | // Time |
||
38 | $time = $date->getTime(); |
||
39 | if ($time) { |
||
40 | $output .= $level.' TIME '.$time."\n"; |
||
41 | } |
||
42 | |||
43 | return $output; |
||
44 | } |
||
46 |