. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\Date; use Fisharebest\Webtrees\Individual; /** * The nationality of the individual. */ class CensusColumnNationality extends AbstractCensusColumn implements CensusColumnInterface { /** @var array Convert a country name to a nationality */ private $nationalities = [ 'England' => 'British', 'Scotland' => 'British', 'Wales' => 'British', 'Deutschland' => 'Deutsch', ]; /** * Generate the likely value of this census column, based on available information. * * @param Individual $individual * @param Individual $head * * @return string */ public function generate(Individual $individual, Individual $head): string { $place = $individual->getBirthPlace()->gedcomName(); // No birthplace? Assume born in the same country. if ($place === '') { $place = $this->place(); } // Did we emigrate or naturalise? foreach ($individual->facts(['IMMI' ,'EMIG', 'NATU'], true) as $fact) { if (Date::compare($fact->date(), $this->date()) <= 0) { $place = $fact->place()->gedcomName(); } } $place = $this->lastPartOfPlace($place); if (array_key_exists($place, $this->nationalities)) { return $this->nationalities[$place]; } return $place; } }