xref: /webtrees/app/Elements/NationalOrTribalOrigin.php (revision d11be7027e34e3121be11cc025421873364403f9)
1f15544dcSGreg Roach<?php
2f15544dcSGreg Roach
3f15544dcSGreg Roach/**
4f15544dcSGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
6f15544dcSGreg Roach * This program is free software: you can redistribute it and/or modify
7f15544dcSGreg Roach * it under the terms of the GNU General Public License as published by
8f15544dcSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9f15544dcSGreg Roach * (at your option) any later version.
10f15544dcSGreg Roach * This program is distributed in the hope that it will be useful,
11f15544dcSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12f15544dcSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13f15544dcSGreg Roach * GNU General Public License for more details.
14f15544dcSGreg Roach * You should have received a copy of the GNU General Public License
15f15544dcSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16f15544dcSGreg Roach */
17f15544dcSGreg Roach
18f15544dcSGreg Roachdeclare(strict_types=1);
19f15544dcSGreg Roach
20f15544dcSGreg Roachnamespace Fisharebest\Webtrees\Elements;
21f15544dcSGreg Roach
22f15544dcSGreg Roach/**
23f15544dcSGreg Roach * NATIONAL_OR_TRIBAL_ORIGIN := {Size=1:120}
24f15544dcSGreg Roach * The person's division of national origin or other folk, house, kindred,
25f15544dcSGreg Roach * lineage, or tribal interest. Examples: Irish, Swede, Egyptian Coptic, Sioux
26f15544dcSGreg Roach * Dakota Rosebud, Apache Chiricawa, Navajo Bitter Water, Eastern Cherokee
27f15544dcSGreg Roach * Taliwa Wolf, and so forth.
28f15544dcSGreg Roach */
29f15544dcSGreg Roachclass NationalOrTribalOrigin extends AbstractElement
30f15544dcSGreg Roach{
31f15544dcSGreg Roach    protected const MAXIMUM_LENGTH = 120;
32f15544dcSGreg Roach
33f15544dcSGreg Roach    protected const SUBTAGS = [
34f15544dcSGreg Roach        'TYPE'  => '0:1:?',
35f15544dcSGreg Roach        'DATE'  => '0:1',
36f15544dcSGreg Roach        'PLAC'  => '0:1',
37f15544dcSGreg Roach        'ADDR'  => '0:1',
38f15544dcSGreg Roach        'EMAIL' => '0:1:?',
39f15544dcSGreg Roach        'WWW'   => '0:1:?',
40f15544dcSGreg Roach        'PHON'  => '0:1:?',
41f15544dcSGreg Roach        'FAX'   => '0:1:?',
42f15544dcSGreg Roach        'CAUS'  => '0:1:?',
43f15544dcSGreg Roach        'AGNC'  => '0:1:?',
44f15544dcSGreg Roach        'RELI'  => '0:1:?',
45f15544dcSGreg Roach        'NOTE'  => '0:M',
46f15544dcSGreg Roach        'OBJE'  => '0:M',
47f15544dcSGreg Roach        'SOUR'  => '0:M',
48f15544dcSGreg Roach        'RESN'  => '0:1',
49f15544dcSGreg Roach    ];
50f15544dcSGreg Roach}
51