. */ 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} * [ ] * 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 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 */ 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; } }