![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/webtrees/app/Elements/ |
Upload File : |
<?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\I18N; use function strtoupper; /** * RESTRICTION_NOTICE := {Size=6:7} * [confidential | locked | privacy ] * The restriction notice is defined for Ancestral File usage. Ancestral File * download GEDCOM files may contain this data. * Where: * confidential = This data was marked as confidential by the user. In some systems data marked as * confidential will be treated differently, for example, there might be an option * that would stop confidential data from appearing on printed reports or would * prevent that information from being exported. * locked = Some records in Ancestral File have been satisfactorily proven by evidence, but * because of source conflicts or incorrect traditions, there are repeated attempts * to change this record. By arrangement, the Ancestral File Custodian can lock a * record so that it cannot be changed without an agreement from the person assigned * as the steward of such a record. The assigned steward is either the submitter * listed for the record or Family History Support when no submitter is listed. * privacy = Indicate that information concerning this record is not present due to rights of * or an approved request for privacy. For example, data from requested downloads of * the Ancestral File may have individuals marked with ‘privacy’ if they are assumed * living, that is they were born within the last 110 years and there isn’t a death * date. In certain cases family records may also be marked with the RESN tag of * privacy if either individual acting in the role of HUSB or WIFE is assumed living. */ class RestrictionNotice extends AbstractElement { public const VALUE_NONE = 'NONE'; public const VALUE_PRIVACY = 'PRIVACY'; public const VALUE_CONFIDENTIAL = 'CONFIDENTIAL'; public const VALUE_LOCKED = 'LOCKED'; private const CANONICAL = [ // Store the locked value after the privacy value. self::VALUE_LOCKED . ', ' . self::VALUE_NONE => self::VALUE_NONE . ', ' . self::VALUE_LOCKED, self::VALUE_LOCKED . ', ' . self::VALUE_PRIVACY => self::VALUE_PRIVACY . ', ' . self::VALUE_LOCKED, self::VALUE_LOCKED . ', ' . self::VALUE_CONFIDENTIAL => self::VALUE_CONFIDENTIAL . ', ' . self::VALUE_LOCKED, // Old versions of Legacy 'invisible' => self::VALUE_PRIVACY, ]; private const ICON_CONFIDENTIAL = '<i class="icon-resn-confidential"></i>'; private const ICON_LOCKED = '<i class="icon-resn-locked"></i> '; private const ICON_NONE = '<i class="icon-resn-none"></i>'; private const ICON_PRIVACY = '<i class="icon-resn-privacy"></i>'; /** * Convert a value to a canonical form. * * @param string $value * * @return string */ public function canonical(string $value): string { $value = strtoupper(parent::canonical($value)); $value = trim($value, ', '); $value = preg_replace('/[, ]+/', ', ', $value); return self::CANONICAL[$value] ?? $value; } /** * A list of controlled values for this element * * @return array<int|string,string> */ public function values(): array { // Note: "1 RESN none" is not valid gedcom. // However, webtrees privacy rules will interpret it as "show an otherwise private record to public". $confidential = I18N::translate('Show to managers'); $locked = I18N::translate('Only managers can edit'); $none = I18N::translate('Show to visitors'); $privacy = I18N::translate('Show to members'); return [ '' => '', self::VALUE_NONE => self::ICON_NONE . ' ' . $none, self::VALUE_NONE . ', ' . self::VALUE_LOCKED => self::ICON_NONE . self::ICON_LOCKED . ' ' . $none . ' — ' . $locked, self::VALUE_PRIVACY => self::ICON_PRIVACY . ' ' . $privacy, self::VALUE_PRIVACY . ', ' . self::VALUE_LOCKED => self::ICON_PRIVACY . self::ICON_LOCKED . ' ' . $privacy . ' — ' . $locked, self::VALUE_CONFIDENTIAL => self::ICON_CONFIDENTIAL . ' ' . $confidential, self::VALUE_CONFIDENTIAL . ', ' . self::VALUE_LOCKED => self::ICON_CONFIDENTIAL . ' ' . self::ICON_LOCKED . ' ' . $confidential . ' — ' . $locked, self::VALUE_LOCKED => self::ICON_LOCKED . ' ' . $locked, ]; } }