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