xref: /webtrees/app/Elements/SexXValue.php (revision d11be7027e34e3121be11cc025421873364403f9)
1ae0043b7SGreg Roach<?php
2ae0043b7SGreg Roach
3ae0043b7SGreg Roach/**
4ae0043b7SGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 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 Roach
24ae0043b7SGreg Roach/**
25ae0043b7SGreg Roach * A modification to the standard SEX record, which allows 'X'.
26ae0043b7SGreg Roach * Gedcom-L defines this as 'Intersex'.  We use the more general term 'Other'.
27ae0043b7SGreg Roach */
283d2c98d1SGreg Roachclass SexXValue extends SexValue
29ae0043b7SGreg Roach{
30ae0043b7SGreg Roach    /**
31ae0043b7SGreg Roach     * A list of controlled values for this element
32ae0043b7SGreg Roach     *
33ae0043b7SGreg Roach     * @return array<int|string,string>
34ae0043b7SGreg Roach     */
35ae0043b7SGreg Roach    public function values(): array
36ae0043b7SGreg Roach    {
37ae0043b7SGreg Roach        $values = parent::values();
38ae0043b7SGreg Roach
39ae0043b7SGreg Roach        $values['X'] = I18N::translate('Other');
40ae0043b7SGreg Roach
41ae0043b7SGreg Roach        return $values;
42ae0043b7SGreg Roach    }
43ae0043b7SGreg Roach}
44