xref: /webtrees/app/Census/CensusColumnGivenNames.php (revision c1010eda29c0909ed4d5d463f32d32bfefdd4dfe)
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 */
1615d603e7SGreg Roach
1740150762SGreg Roachnamespace Fisharebest\Webtrees\Census;
1840150762SGreg Roach
1940150762SGreg Roachuse Fisharebest\Webtrees\Individual;
2040150762SGreg Roach
2140150762SGreg Roach/**
2240150762SGreg Roach * The individual's full name.
2340150762SGreg Roach */
24*c1010edaSGreg Roachclass CensusColumnGivenNames extends AbstractCensusColumn implements CensusColumnInterface
25*c1010edaSGreg Roach{
2640150762SGreg Roach    /**
2740150762SGreg Roach     * Generate the likely value of this census column, based on available information.
2840150762SGreg Roach     *
2940150762SGreg Roach     * @param Individual $individual
3015d603e7SGreg Roach     * @param Individual $head
3140150762SGreg Roach     *
3240150762SGreg Roach     * @return string
3340150762SGreg Roach     */
34*c1010edaSGreg Roach    public function generate(Individual $individual, Individual $head = null)
35*c1010edaSGreg Roach    {
3640150762SGreg Roach        foreach ($individual->getAllNames() as $name) {
3740150762SGreg Roach            return $name['givn'];
3840150762SGreg Roach        }
3940150762SGreg Roach
4040150762SGreg Roach        return '';
4140150762SGreg Roach    }
4240150762SGreg Roach}
43