1db7d25eeSGreg Roach<?php 2db7d25eeSGreg Roach/** 3db7d25eeSGreg Roach * webtrees: online genealogy 4db7d25eeSGreg Roach * Copyright (C) 2015 webtrees development team 5db7d25eeSGreg Roach * This program is free software: you can redistribute it and/or modify 6db7d25eeSGreg Roach * it under the terms of the GNU General Public License as published by 7db7d25eeSGreg Roach * the Free Software Foundation, either version 3 of the License, or 8db7d25eeSGreg Roach * (at your option) any later version. 9db7d25eeSGreg Roach * This program is distributed in the hope that it will be useful, 10db7d25eeSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 11db7d25eeSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12db7d25eeSGreg Roach * GNU General Public License for more details. 13db7d25eeSGreg Roach * You should have received a copy of the GNU General Public License 14db7d25eeSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 15db7d25eeSGreg Roach */ 16db7d25eeSGreg Roachnamespace Fisharebest\Webtrees\Census; 17db7d25eeSGreg Roach 18db7d25eeSGreg Roachuse Fisharebest\Webtrees\Individual; 19db7d25eeSGreg Roach 20db7d25eeSGreg Roach/** 21db7d25eeSGreg Roach * Was the individual born in "foreign parts". 22db7d25eeSGreg Roach */ 23db7d25eeSGreg Roachclass CensusColumnBornForeignParts extends AbstractCensusColumn implements CensusColumnInterface { 24db7d25eeSGreg Roach /** 25db7d25eeSGreg Roach * Generate the likely value of this census column, based on available information. 26db7d25eeSGreg Roach * 27db7d25eeSGreg Roach * @param Individual $individual 28db7d25eeSGreg Roach * 29db7d25eeSGreg Roach * @return string 30db7d25eeSGreg Roach */ 31db7d25eeSGreg Roach public function generate(Individual $individual) { 32db7d25eeSGreg Roach $birth_place = explode(', ', $individual->getBirthPlace()); 33db7d25eeSGreg Roach $birth_place = end($birth_place); 34*ef21b467SGreg Roach $census_place = $this->place(); 35db7d25eeSGreg Roach 36db7d25eeSGreg Roach if ($birth_place === 'Wales') { 37db7d25eeSGreg Roach $birth_place = 'England'; 38db7d25eeSGreg Roach } 39db7d25eeSGreg Roach 40db7d25eeSGreg Roach if ($census_place === 'Wales') { 41db7d25eeSGreg Roach $census_place = 'England'; 42db7d25eeSGreg Roach } 43db7d25eeSGreg Roach 44db7d25eeSGreg Roach if ($birth_place === $census_place) { 45db7d25eeSGreg Roach return ''; 46db7d25eeSGreg Roach } elseif ($birth_place === 'England' || $birth_place === 'Scotland' || $birth_place === 'Ireland') { 47db7d25eeSGreg Roach return substr($birth_place, 0, 1); 48db7d25eeSGreg Roach } else { 49db7d25eeSGreg Roach return 'F'; 50db7d25eeSGreg Roach } 51db7d25eeSGreg Roach } 52db7d25eeSGreg Roach} 53