xref: /webtrees/app/Elements/SexXValue.php (revision 3d2c98d1066d5e178a3d1ceb3bdc58b7ba8ee926)
1ae0043b7SGreg Roach<?php
2ae0043b7SGreg Roach
3ae0043b7SGreg Roach/**
4ae0043b7SGreg Roach * webtrees: online genealogy
5ae0043b7SGreg Roach * Copyright (C) 2021 webtrees development team
6ae0043b7SGreg Roach * This program is free software: you can redistribute it and/or modify
7ae0043b7SGreg Roach * it under the terms of the GNU General Public License as published by
8ae0043b7SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9ae0043b7SGreg Roach * (at your option) any later version.
10ae0043b7SGreg Roach * This program is distributed in the hope that it will be useful,
11ae0043b7SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12ae0043b7SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13ae0043b7SGreg Roach * GNU General Public License for more details.
14ae0043b7SGreg Roach * You should have received a copy of the GNU General Public License
15ae0043b7SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16ae0043b7SGreg Roach */
17ae0043b7SGreg Roach
18ae0043b7SGreg Roachdeclare(strict_types=1);
19ae0043b7SGreg Roach
20ae0043b7SGreg Roachnamespace Fisharebest\Webtrees\Elements;
21ae0043b7SGreg Roach
22ae0043b7SGreg Roachuse Fisharebest\Webtrees\I18N;
23ae0043b7SGreg Roachuse Fisharebest\Webtrees\Tree;
24ae0043b7SGreg Roach
25ae0043b7SGreg Roachuse function strtoupper;
26ae0043b7SGreg Roachuse function view;
27ae0043b7SGreg Roach
28ae0043b7SGreg Roach/**
29ae0043b7SGreg Roach * A modification to the standard SEX record, which allows 'X'.
30ae0043b7SGreg Roach * Gedcom-L defines this as 'Intersex'.  We use the more general term 'Other'.
31ae0043b7SGreg Roach */
32*3d2c98d1SGreg Roachclass SexXValue extends SexValue
33ae0043b7SGreg Roach{
34ae0043b7SGreg Roach    /**
35ae0043b7SGreg Roach     * A list of controlled values for this element
36ae0043b7SGreg Roach     *
37ae0043b7SGreg Roach     * @return array<int|string,string>
38ae0043b7SGreg Roach     */
39ae0043b7SGreg Roach    public function values(): array
40ae0043b7SGreg Roach    {
41ae0043b7SGreg Roach        $values = parent::values();
42ae0043b7SGreg Roach
43ae0043b7SGreg Roach        $values['X'] = I18N::translate('Other');
44ae0043b7SGreg Roach
45ae0043b7SGreg Roach        return $values;
46ae0043b7SGreg Roach    }
47ae0043b7SGreg Roach}
48