1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* webtrees: online genealogy |
5
|
|
|
* Copyright (C) 2020 webtrees development team |
6
|
|
|
* This program is free software: you can redistribute it and/or modify |
7
|
|
|
* it under the terms of the GNU General Public License as published by |
8
|
|
|
* the Free Software Foundation, either version 3 of the License, or |
9
|
|
|
* (at your option) any later version. |
10
|
|
|
* This program is distributed in the hope that it will be useful, |
11
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
12
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13
|
|
|
* GNU General Public License for more details. |
14
|
|
|
* You should have received a copy of the GNU General Public License |
15
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
16
|
|
|
*/ |
17
|
|
|
|
18
|
|
|
declare(strict_types=1); |
19
|
|
|
|
20
|
|
|
namespace Fisharebest\Webtrees\GedcomElements; |
21
|
|
|
|
22
|
|
|
use Fisharebest\Webtrees\I18N; |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* PEDIGREE_LINKAGE_TYPE := {Size=5:7} |
26
|
|
|
* [ adopted | birth | foster | sealing ] |
27
|
|
|
* A code used to indicate the child to family relationship for pedigree navigation purposes. |
28
|
|
|
* Where: |
29
|
|
|
* adopted = indicates adoptive parents. |
30
|
|
|
* birth = indicates birth parents. |
31
|
|
|
* foster = indicates child was included in a foster or guardian family. |
32
|
|
|
* sealing = indicates child was sealed to parents other than birth parents. |
33
|
|
|
*/ |
34
|
|
|
class PedigreeLinkageType extends AbstractElement |
35
|
|
|
{ |
36
|
|
|
/** |
37
|
|
|
* A list of controlled values for this element |
38
|
|
|
* |
39
|
|
|
* @param string $sex - the text depends on the sex of the individual |
40
|
|
|
* |
41
|
|
|
* @return array<int|string,string> |
42
|
|
|
*/ |
43
|
|
|
public function values(string $sex = 'U'): array |
44
|
|
|
{ |
45
|
|
|
$values = [ |
46
|
|
|
'M' => [ |
47
|
|
|
'' => '', |
48
|
|
|
'birth' => I18N::translateContext('Male pedigree', 'Birth'), |
49
|
|
|
'adopted' => I18N::translateContext('Male pedigree', 'Adopted'), |
50
|
|
|
'foster' => I18N::translateContext('Male pedigree', 'Foster'), |
51
|
|
|
'sealing' => /* I18N: “sealing” is a Mormon ceremony. */ |
52
|
|
|
I18N::translateContext('Male pedigree', 'Sealing'), |
53
|
|
|
'rada' => /* I18N: “rada” is an Arabic word, pronounced “ra DAH”. It is child-to-parent pedigree, established by wet-nursing. */ |
54
|
|
|
I18N::translateContext('Male pedigree', 'Rada'), |
55
|
|
|
], |
56
|
|
|
'F' => [ |
57
|
|
|
'' => '', |
58
|
|
|
'birth' => I18N::translateContext('Female pedigree', 'Birth'), |
59
|
|
|
'adopted' => I18N::translateContext('Female pedigree', 'Adopted'), |
60
|
|
|
'foster' => I18N::translateContext('Female pedigree', 'Foster'), |
61
|
|
|
'sealing' => /* I18N: “sealing” is a Mormon ceremony. */ |
62
|
|
|
I18N::translateContext('Female pedigree', 'Sealing'), |
63
|
|
|
'rada' => /* I18N: “rada” is an Arabic word, pronounced “ra DAH”. It is child-to-parent pedigree, established by wet-nursing. */ |
64
|
|
|
I18N::translateContext('Female pedigree', 'Rada'), |
65
|
|
|
], |
66
|
|
|
'U' => [ |
67
|
|
|
'' => '', |
68
|
|
|
'birth' => I18N::translateContext('Pedigree', 'Birth'), |
69
|
|
|
'adopted' => I18N::translateContext('Pedigree', 'Adopted'), |
70
|
|
|
'foster' => I18N::translateContext('Pedigree', 'Foster'), |
71
|
|
|
'sealing' => /* I18N: “sealing” is a Mormon ceremony. */ |
72
|
|
|
I18N::translateContext('Pedigree', 'Sealing'), |
73
|
|
|
'rada' => /* I18N: “rada” is an Arabic word, pronounced “ra DAH”. It is child-to-parent pedigree, established by wet-nursing. */ |
74
|
|
|
I18N::translateContext('Pedigree', 'Rada'), |
75
|
|
|
], |
76
|
|
|
]; |
77
|
|
|
|
78
|
|
|
return $values[$sex] ?? $values['U']; |
79
|
|
|
} |
80
|
|
|
} |
81
|
|
|
|