xref: /webtrees/app/Elements/IndividualRecord.php (revision afc2731739d8fb834de377553c3f9b7681365bcc)
1e7e5b015SGreg Roach<?php
2e7e5b015SGreg Roach
3e7e5b015SGreg Roach/**
4e7e5b015SGreg Roach * webtrees: online genealogy
5e7e5b015SGreg Roach * Copyright (C) 2021 webtrees development team
6e7e5b015SGreg Roach * This program is free software: you can redistribute it and/or modify
7e7e5b015SGreg Roach * it under the terms of the GNU General Public License as published by
8e7e5b015SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9e7e5b015SGreg Roach * (at your option) any later version.
10e7e5b015SGreg Roach * This program is distributed in the hope that it will be useful,
11e7e5b015SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12e7e5b015SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13e7e5b015SGreg Roach * GNU General Public License for more details.
14e7e5b015SGreg Roach * You should have received a copy of the GNU General Public License
15e7e5b015SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16e7e5b015SGreg Roach */
17e7e5b015SGreg Roach
18e7e5b015SGreg Roachdeclare(strict_types=1);
19e7e5b015SGreg Roach
20e7e5b015SGreg Roachnamespace Fisharebest\Webtrees\Elements;
21e7e5b015SGreg Roach
22e7e5b015SGreg Roach/**
23e7e5b015SGreg Roach * A level 0 individual record
24e7e5b015SGreg Roach */
25e7e5b015SGreg Roachclass IndividualRecord extends AbstractElement
26e7e5b015SGreg Roach{
27e7e5b015SGreg Roach    protected const SUBTAGS = [
28e7e5b015SGreg Roach        'SEX'  => '1:1',
29e7e5b015SGreg Roach        'BIRT' => '0:1',
30e7e5b015SGreg Roach        'DEAT' => '0:1',
31*afc27317SGreg Roach        'CHAN' => '0:1',
32e7e5b015SGreg Roach    ];
33e7e5b015SGreg Roach}
34