fisharebest/webtrees

View on GitHub
app/Elements/EventTypeCitedFrom.php

Summary

Maintainability
A
25 mins
Test Coverage
<?php

/**
 * webtrees: online genealogy
 * Copyright (C) 2023 webtrees development team
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
 */

declare(strict_types=1);

namespace Fisharebest\Webtrees\Elements;

use Fisharebest\Webtrees\Family;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Individual;
use Fisharebest\Webtrees\Registry;

use function uasort;

/**
 * EVENT_OR_FACT_CLASSIFICATION := {Size=1:15}
 * [ <EVENT_ATTRIBUTE_TYPE> ]
 * A code that indicates the type of event which was responsible for the source
 * entry being recorded. For example, if the entry was created to record a
 * birth of a child, then the type would be BIRT regardless of the assertions
 * made from that record, such as the mother's name or mother's birth date.
 * This will allow a prioritized best view choice and a determination of the
 * certainty associated with the source used in asserting the cited fact.
 */
class EventTypeCitedFrom extends AbstractElement
{
    protected const MAXIMUM_LENGTH = 15;

    protected const SUBTAGS = [
        'ROLE' => '0:1',
    ];

    protected const FAMILY_EVENTS = [
        'ANUL',
        'CENS',
        'DIV',
        'DIVF',
        'ENGA',
        'MARR',
        'MARB',
        'MARC',
        'MARL',
        'MARS',
        'EVEN',
    ];

    protected const INDIVIDUAL_EVENTS = [
        'ADOP',
        'BIRT',
        'BAPM',
        'BARM',
        'BASM',
        'BLES',
        'BURI',
        'CENS',
        'CHR',
        'CHRA',
        'CONF',
        'CREM',
        'DEAT',
        'EMIG',
        'FCOM',
        'GRAD',
        'IMMI',
        'NATU',
        'ORDN',
        'RETI',
        'PROB',
        'WILL',
        'EVEN',
    ];

    protected const ATTRIBUTE_TYPES = [
        'CAST',
        'EDUC',
        'NATI',
        'OCCU',
        'PROP',
        'RELI',
        'RESI',
        'TITL',
        'FACT',
    ];

    /**
     * A list of controlled values for this element
     *
     * @return array<int|string,string>
     */
    public function values(): array
    {
        $data = [
            Family::RECORD_TYPE     => static::FAMILY_EVENTS,
            Individual::RECORD_TYPE => array_merge(static::INDIVIDUAL_EVENTS, static::ATTRIBUTE_TYPES),
        ];

        $values = ['' => ''];

        foreach ($data as $record_type => $subtags) {
            foreach ($subtags as $subtag) {
                $element = Registry::elementFactory()->make($record_type . ':' . $subtag);

                if (!$element instanceof UnknownElement) {
                    $values[$subtag] = $element->label();
                }
            }
        }

        uasort($values, I18N::comparator());

        return $values;
    }
}