xref: /webtrees/app/Elements/EventOrFactClassification.php (revision e63974ca8f8be67057bdbb2a6542479ea4e5f8b4)
1c2ed51d1SGreg Roach<?php
2c2ed51d1SGreg Roach
3c2ed51d1SGreg Roach/**
4c2ed51d1SGreg Roach * webtrees: online genealogy
55bfc6897SGreg Roach * Copyright (C) 2022 webtrees development team
6c2ed51d1SGreg Roach * This program is free software: you can redistribute it and/or modify
7c2ed51d1SGreg Roach * it under the terms of the GNU General Public License as published by
8c2ed51d1SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9c2ed51d1SGreg Roach * (at your option) any later version.
10c2ed51d1SGreg Roach * This program is distributed in the hope that it will be useful,
11c2ed51d1SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12c2ed51d1SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13c2ed51d1SGreg Roach * GNU General Public License for more details.
14c2ed51d1SGreg Roach * You should have received a copy of the GNU General Public License
15c2ed51d1SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16c2ed51d1SGreg Roach */
17c2ed51d1SGreg Roach
18c2ed51d1SGreg Roachdeclare(strict_types=1);
19c2ed51d1SGreg Roach
20c2ed51d1SGreg Roachnamespace Fisharebest\Webtrees\Elements;
21c2ed51d1SGreg Roach
22c2ed51d1SGreg Roach/**
23c2ed51d1SGreg Roach * EVENT_OR_FACT_CLASSIFICATION := {Size=1:90}
24c2ed51d1SGreg Roach * A descriptive word or phrase used to further classify the parent event or
25c2ed51d1SGreg Roach * attribute tag. This should be used whenever either of the generic EVEN or
26*e63974caSStefan Weil * FACT tags are used. The value of this primitive is responsible for
27c2ed51d1SGreg Roach * classifying the generic event or fact being cited. For example, if the
28c2ed51d1SGreg Roach * attribute being defined was one of the persons skills, such as woodworking,
29c2ed51d1SGreg Roach * the FACT tag would have the value of `Woodworking', followed by a
30c2ed51d1SGreg Roach * subordinate TYPE tag with the value `Skills.'
31c2ed51d1SGreg Roach * 1 FACT Woodworking
32c2ed51d1SGreg Roach * 2 TYPE Skills
33c2ed51d1SGreg Roach * This groups the fact into a generic skills attribute, and in particular this
34c2ed51d1SGreg Roach * entry records the fact that this individual possessed the skill of
35c2ed51d1SGreg Roach * woodworking. Using the subordinate TYPE tag classification method with any
36c2ed51d1SGreg Roach * of the other defined event tags provides a further classification of the
37c2ed51d1SGreg Roach * parent tag but does not change the basic meaning of the parent tag. For
38c2ed51d1SGreg Roach * example, a MARR tag could be subordinated with a TYPE tag with an
39c2ed51d1SGreg Roach * EVENT_DESCRIPTOR value of `Common Law.'
40c2ed51d1SGreg Roach * 1 MARR
41c2ed51d1SGreg Roach * 2 TYPE Common Law
42c2ed51d1SGreg Roach * This classifies the entry as a common law marriage but the event is still a
43c2ed51d1SGreg Roach * marriage event. Other descriptor values might include, for example,
44c2ed51d1SGreg Roach * `stillborn' as a qualifier to BIRTh or `Tribal Custom' as a qualifier to
45c2ed51d1SGreg Roach * MARRiage.
46c2ed51d1SGreg Roach */
47c2ed51d1SGreg Roachclass EventOrFactClassification extends AbstractElement
48c2ed51d1SGreg Roach{
49ae0043b7SGreg Roach    protected const MAXIMUM_LENGTH = 90;
50c2ed51d1SGreg Roach}
51