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