xref: /webtrees/app/Census/CensusColumnGivenNames.php (revision 15d603e7c7c15d20f055d3d9c38d6b133453c5be)
140150762SGreg Roach<?php
240150762SGreg Roach/**
340150762SGreg Roach * webtrees: online genealogy
46bdf7674SGreg Roach * Copyright (C) 2017 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*15d603e7SGreg 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 */
2440150762SGreg Roachclass CensusColumnGivenNames extends AbstractCensusColumn implements CensusColumnInterface {
2540150762SGreg Roach	/**
2640150762SGreg Roach	 * Generate the likely value of this census column, based on available information.
2740150762SGreg Roach	 *
2840150762SGreg Roach	 * @param Individual $individual
29*15d603e7SGreg Roach	 * @param Individual $head
3040150762SGreg Roach	 *
3140150762SGreg Roach	 * @return string
3240150762SGreg Roach	 */
33ad51e0bbSGreg Roach	public function generate(Individual $individual, Individual $head = null) {
3440150762SGreg Roach		foreach ($individual->getAllNames() as $name) {
3540150762SGreg Roach			return $name['givn'];
3640150762SGreg Roach		}
3740150762SGreg Roach
3840150762SGreg Roach		return '';
3940150762SGreg Roach	}
4040150762SGreg Roach}
41