fisharebest/webtrees

View on GitHub
app/Census/CensusColumnBornForeignParts.php

Summary

Maintainability
A
25 mins
Test Coverage
<?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\Census;

use Fisharebest\Webtrees\Individual;

/**
 * Was the individual born in "foreign parts".
 */
class CensusColumnBornForeignParts extends AbstractCensusColumn implements CensusColumnInterface
{
    /**
     * 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
    {
        $birth_place  = (string) $individual->getBirthPlace()->lastParts(1)->first();
        $census_place = $this->place();

        if ($birth_place === 'Wales') {
            $birth_place = 'England';
        }

        if ($census_place === 'Wales') {
            $census_place = 'England';
        }

        if ($birth_place === $census_place || $birth_place === '') {
            return '';
        }

        if ($birth_place === 'England' || $birth_place === 'Scotland' || $birth_place === 'Ireland') {
            return substr($birth_place, 0, 1);
        }

        return 'F';
    }
}