1ef21b467SGreg Roach<?php 2ef21b467SGreg Roach/** 3ef21b467SGreg Roach * webtrees: online genealogy 41062a142SGreg Roach * Copyright (C) 2018 webtrees development team 5ef21b467SGreg Roach * This program is free software: you can redistribute it and/or modify 6ef21b467SGreg Roach * it under the terms of the GNU General Public License as published by 7ef21b467SGreg Roach * the Free Software Foundation, either version 3 of the License, or 8ef21b467SGreg Roach * (at your option) any later version. 9ef21b467SGreg Roach * This program is distributed in the hope that it will be useful, 10ef21b467SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 11ef21b467SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12ef21b467SGreg Roach * GNU General Public License for more details. 13ef21b467SGreg Roach * You should have received a copy of the GNU General Public License 14ef21b467SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 15ef21b467SGreg Roach */ 16*e7f56f2aSGreg Roachdeclare(strict_types=1); 1715d603e7SGreg Roach 18ef21b467SGreg Roachnamespace Fisharebest\Webtrees\Census; 19ef21b467SGreg Roach 2040150762SGreg Roachuse Fisharebest\Webtrees\Date; 21ef21b467SGreg Roachuse Fisharebest\Webtrees\Individual; 22ef21b467SGreg Roach 23ef21b467SGreg Roach/** 24ef21b467SGreg Roach * The nationality of the individual. 25ef21b467SGreg Roach */ 26c1010edaSGreg Roachclass CensusColumnNationality extends AbstractCensusColumn implements CensusColumnInterface 27c1010edaSGreg Roach{ 2852f14e58SGreg Roach /** @var array Convert a country name to a nationality */ 2915d603e7SGreg Roach private $nationalities 3015d603e7SGreg Roach = [ 3152f14e58SGreg Roach 'England' => 'British', 3252f14e58SGreg Roach 'Scotland' => 'British', 3352f14e58SGreg Roach 'Wales' => 'British', 3452f14e58SGreg Roach 'Deutschland' => 'Deutsch', 3513abd6f3SGreg Roach ]; 3652f14e58SGreg Roach 37ef21b467SGreg Roach /** 38ef21b467SGreg Roach * Generate the likely value of this census column, based on available information. 39ef21b467SGreg Roach * 40ef21b467SGreg Roach * @param Individual $individual 4115d603e7SGreg Roach * @param Individual $head 42ef21b467SGreg Roach * 43ef21b467SGreg Roach * @return string 44ef21b467SGreg Roach */ 455a62e0a6SGreg Roach public function generate(Individual $individual, Individual $head): string 46c1010edaSGreg Roach { 4716d0b7f7SRico Sonntag $place = $individual->getBirthPlace()->getGedcomName(); 48ef21b467SGreg Roach 4952f14e58SGreg Roach // No birthplace? Assume born in the same country. 5052f14e58SGreg Roach if ($place === '') { 5152f14e58SGreg Roach $place = $this->place(); 5252f14e58SGreg Roach } 5352f14e58SGreg Roach 54ef21b467SGreg Roach // Did we emigrate or naturalise? 55ef21b467SGreg Roach foreach ($individual->getFacts('IMMI|EMIG|NATU', true) as $fact) { 56ef21b467SGreg Roach if (Date::compare($fact->getDate(), $this->date()) <= 0) { 57ef21b467SGreg Roach $place = $fact->getPlace()->getGedcomName(); 58ef21b467SGreg Roach } 59ef21b467SGreg Roach } 60ef21b467SGreg Roach 6152f14e58SGreg Roach $place = $this->lastPartOfPlace($place); 62ef21b467SGreg Roach 6352f14e58SGreg Roach if (array_key_exists($place, $this->nationalities)) { 6452f14e58SGreg Roach return $this->nationalities[$place]; 65ef21b467SGreg Roach } 66b2ce94c6SRico Sonntag 67b2ce94c6SRico Sonntag return $place; 68ef21b467SGreg Roach } 69ef21b467SGreg Roach} 70