xref: /webtrees/app/Census/CensusColumnGivenNames.php (revision e7f56f2af615447ab1a7646851f88b465ace9e04)
140150762SGreg Roach<?php
240150762SGreg Roach/**
340150762SGreg Roach * webtrees: online genealogy
41062a142SGreg Roach * Copyright (C) 2018 webtrees development team
540150762SGreg Roach * This program is free software: you can redistribute it and/or modify
640150762SGreg Roach * it under the terms of the GNU General Public License as published by
740150762SGreg Roach * the Free Software Foundation, either version 3 of the License, or
840150762SGreg Roach * (at your option) any later version.
940150762SGreg Roach * This program is distributed in the hope that it will be useful,
1040150762SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1140150762SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1240150762SGreg Roach * GNU General Public License for more details.
1340150762SGreg Roach * You should have received a copy of the GNU General Public License
1440150762SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
1540150762SGreg Roach */
16*e7f56f2aSGreg Roachdeclare(strict_types=1);
1715d603e7SGreg Roach
1840150762SGreg Roachnamespace Fisharebest\Webtrees\Census;
1940150762SGreg Roach
2040150762SGreg Roachuse Fisharebest\Webtrees\Individual;
2140150762SGreg Roach
2240150762SGreg Roach/**
2340150762SGreg Roach * The individual's full name.
2440150762SGreg Roach */
25c1010edaSGreg Roachclass CensusColumnGivenNames extends AbstractCensusColumn implements CensusColumnInterface
26c1010edaSGreg Roach{
2740150762SGreg Roach    /**
2840150762SGreg Roach     * Generate the likely value of this census column, based on available information.
2940150762SGreg Roach     *
3040150762SGreg Roach     * @param Individual $individual
3115d603e7SGreg Roach     * @param Individual $head
3240150762SGreg Roach     *
3340150762SGreg Roach     * @return string
3440150762SGreg Roach     */
358f53f488SRico Sonntag    public function generate(Individual $individual, Individual $head): string
36c1010edaSGreg Roach    {
3740150762SGreg Roach        foreach ($individual->getAllNames() as $name) {
3840150762SGreg Roach            return $name['givn'];
3940150762SGreg Roach        }
4040150762SGreg Roach
4140150762SGreg Roach        return '';
4240150762SGreg Roach    }
4340150762SGreg Roach}
44