1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/webtrees_ynh.git synced 2024-09-03 18:26:37 +02:00
webtrees_ynh/sources/app/GedcomCode/GedcomCodePedi.php

168 lines
4.8 KiB
PHP
Raw Normal View History

<?php
/**
* webtrees: online genealogy
* Copyright (C) 2016 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 <http://www.gnu.org/licenses/>.
*/
namespace Fisharebest\Webtrees\GedcomCode;
use Fisharebest\Webtrees\GedcomRecord;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Individual;
/**
* Class GedcomCodePedi - Functions and logic for GEDCOM "PEDI" codes
*/
class GedcomCodePedi {
/** @var string[] Possible values for pedigree field */
private static $TYPES = array('adopted', 'birth', 'foster', 'rada', 'sealing');
/**
* Translate a code, for an optional record
*
* @param string $type
* @param GedcomRecord|null $record
*
* @return string
*/
public static function getValue($type, GedcomRecord $record = null) {
if ($record instanceof Individual) {
$sex = $record->getSex();
} else {
$sex = 'U';
}
switch ($type) {
case 'birth':
switch ($sex) {
case 'M':
return I18N::translateContext('Male pedigree', 'Birth');
case 'F':
return I18N::translateContext('Female pedigree', 'Birth');
default:
return I18N::translateContext('Pedigree', 'Birth');
}
case 'adopted':
switch ($sex) {
case 'M':
return I18N::translateContext('Male pedigree', 'Adopted');
case 'F':
return I18N::translateContext('Female pedigree', 'Adopted');
default:
return I18N::translateContext('Pedigree', 'Adopted');
}
case 'foster':
switch ($sex) {
case 'M':
return I18N::translateContext('Male pedigree', 'Foster');
case 'F':
return I18N::translateContext('Female pedigree', 'Foster');
default:
return I18N::translateContext('Pedigree', 'Foster');
}
case 'sealing':
switch ($sex) {
case 'M':
return
/* I18N: “sealing” is a ceremony in the Mormon church. */
I18N::translateContext('Male pedigree', 'Sealing');
case 'F':
return
/* I18N: “sealing” is a ceremony in the Mormon church. */
I18N::translateContext('Female pedigree', 'Sealing');
default:
return
/* I18N: “sealing” is a ceremony in the Mormon church. */
I18N::translateContext('Pedigree', 'Sealing');
}
case 'rada':
// Not standard GEDCOM - a webtrees extension
// This is an arabic word which does not exist in other languages.
// So, it will not have any inflected forms.
return
/* I18N: This is an Arabic word, pronounced “ra DAH”. It is child-to-parent pedigree, established by wet-nursing. */
I18N::translate('Rada');
default:
return $type;
}
}
/**
* A list of all possible values for PEDI
*
* @param GedcomRecord|null $record
*
* @return string[]
*/
public static function getValues(GedcomRecord $record = null) {
$values = array();
foreach (self::$TYPES as $type) {
$values[$type] = self::getValue($type, $record);
}
uasort($values, '\Fisharebest\Webtrees\I18N::strcasecmp');
return $values;
}
/**
* A label for a parental family group
*
* @param string $pedi
*
* @return string
*/
public static function getChildFamilyLabel($pedi) {
switch ($pedi) {
case '':
case 'birth':
return I18N::translate('Family with parents');
case 'adopted':
return I18N::translate('Family with adoptive parents');
case 'foster':
return I18N::translate('Family with foster parents');
case 'sealing':
return
/* I18N: “sealing” is a Mormon ceremony. */
I18N::translate('Family with sealing parents');
case 'rada':
return
/* I18N: “rada” is an Arabic word, pronounced “ra DAH”. It is child-to-parent pedigree, established by wet-nursing. */
I18N::translate('Family with rada parents');
default:
return I18N::translate('Family with parents') . ' - ' . $pedi;
}
}
/**
* Create GEDCOM for a new child-family pedigree
*
* @param $pedi
* @param $xref
*
* @return string
*/
public static function createNewFamcPedi($pedi, $xref) {
switch ($pedi) {
case '':
return "1 FAMC @$xref@";
case 'adopted':
return "1 FAMC @$xref@\n2 PEDI $pedi\n1 ADOP\n2 FAMC @$xref@\n3 ADOP BOTH";
case 'sealing':
return "1 FAMC @$xref@\n2 PEDI $pedi\n1 SLGC\n2 FAMC @$xref@";
case 'foster':
return "1 FAMC @$xref@\n2 PEDI $pedi\n1 EVEN\n2 TYPE $pedi";
default:
return "1 FAMC @$xref@\n2 PEDI $pedi";
}
}
}