1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
<?php
namespace Fisharebest\Webtrees\GedcomCode;
/**
* webtrees: online genealogy
* Copyright (C) 2015 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
use Fisharebest\Webtrees\GedcomRecord;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Individual;
/**
* Class GedcomCodePedi - Functions and logic for GEDCOM "PEDI" codes
*/
class GedcomCodePedi {
/** @var string[] Possible values for pedigree field */
private static $TYPES = array('adopted', 'birth', 'foster', 'rada', 'sealing');
/**
* Translate a code, for an optional record
*
* @param string $type
* @param GedcomRecord|null $record
*
* @return string
*/
public static function getValue($type, GedcomRecord $record = null) {
if ($record instanceof Individual) {
$sex = $record->getSex();
} else {
$sex = 'U';
}
switch ($type) {
case 'birth':
switch ($sex) {
case 'M':
return I18N::translateContext('Male pedigree', 'Birth');
case 'F':
return I18N::translateContext('Female pedigree', 'Birth');
default:
return I18N::translateContext('Pedigree', 'Birth');
}
case 'adopted':
switch ($sex) {
case 'M':
return I18N::translateContext('Male pedigree', 'Adopted');
case 'F':
return I18N::translateContext('Female pedigree', 'Adopted');
default:
return I18N::translateContext('Pedigree', 'Adopted');
}
case 'foster':
switch ($sex) {
case 'M':
return I18N::translateContext('Male pedigree', 'Foster');
case 'F':
return I18N::translateContext('Female pedigree', 'Foster');
default:
return I18N::translateContext('Pedigree', 'Foster');
}
case 'sealing':
switch ($sex) {
case 'M':
return
/* I18N: “sealing” is a ceremony in the Mormon church. */
I18N::translateContext('Male pedigree', 'Sealing');
case 'F':
return
/* I18N: “sealing” is a ceremony in the Mormon church. */
I18N::translateContext('Female pedigree', 'Sealing');
default:
return
/* I18N: “sealing” is a ceremony in the Mormon church. */
I18N::translateContext('Pedigree', 'Sealing');
}
case 'rada':
// Not standard GEDCOM - a webtrees extension
// This is an arabic word which does not exist in other languages.
// So, it will not have any inflected forms.
return
/* I18N: This is an Arabic word, pronounced “ra DAH”. It is child-to-parent pedigree, established by wet-nursing. */
I18N::translate('Rada');
default:
return $type;
}
}
/**
* A list of all possible values for PEDI
*
* @param GedcomRecord|null $record
*
* @return string[]
*/
public static function getValues(GedcomRecord $record = null) {
$values = array();
foreach (self::$TYPES as $type) {
$values[$type] = self::getValue($type, $record);
}
uasort($values, '\Fisharebest\Webtrees\I18N::strcasecmp');
return $values;
}
/**
* A label for a parental family group
*
* @param string $pedi
*
* @return string
*/
public static function getChildFamilyLabel($pedi) {
switch ($pedi) {
case '':
case 'birth':
return I18N::translate('Family with parents');
case 'adopted':
return I18N::translate('Family with adoptive parents');
case 'foster':
return I18N::translate('Family with foster parents');
case 'sealing':
return
/* I18N: “sealing” is a Mormon ceremony. */
I18N::translate('Family with sealing parents');
case 'rada':
return
/* I18N: “rada” is an Arabic word, pronounced “ra DAH”. It is child-to-parent pedigree, established by wet-nursing. */
I18N::translate('Family with rada parents');
default:
return I18N::translate('Family with parents') . ' - ' . $pedi;
}
}
/**
* Create GEDCOM for a new child-family pedigree
*
* @param $pedi
* @param $xref
*
* @return string
*/
public static function createNewFamcPedi($pedi, $xref) {
switch ($pedi) {
case '':
return "1 FAMC @$xref@";
case 'adopted':
return "1 FAMC @$xref@\n2 PEDI $pedi\n1 ADOP\n2 FAMC @$xref@\n3 ADOP BOTH";
case 'sealing':
return "1 FAMC @$xref@\n2 PEDI $pedi\n1 SLGC\n2 FAMC @$xref@";
case 'foster':
return "1 FAMC @$xref@\n2 PEDI $pedi\n1 EVEN\n2 TYPE $pedi";
default:
return "1 FAMC @$xref@\n2 PEDI $pedi";
}
}
}
|