xref: /webtrees/app/Census/CensusColumnFatherForeign.php (revision ef21b467575956631eb5374fe4f2bfb94e69aaa9)
1*ef21b467SGreg Roach<?php
2*ef21b467SGreg Roach/**
3*ef21b467SGreg Roach * webtrees: online genealogy
4*ef21b467SGreg Roach * Copyright (C) 2015 webtrees development team
5*ef21b467SGreg Roach * This program is free software: you can redistribute it and/or modify
6*ef21b467SGreg Roach * it under the terms of the GNU General Public License as published by
7*ef21b467SGreg Roach * the Free Software Foundation, either version 3 of the License, or
8*ef21b467SGreg Roach * (at your option) any later version.
9*ef21b467SGreg Roach * This program is distributed in the hope that it will be useful,
10*ef21b467SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
11*ef21b467SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12*ef21b467SGreg Roach * GNU General Public License for more details.
13*ef21b467SGreg Roach * You should have received a copy of the GNU General Public License
14*ef21b467SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
15*ef21b467SGreg Roach */
16*ef21b467SGreg Roachnamespace Fisharebest\Webtrees\Census;
17*ef21b467SGreg Roach
18*ef21b467SGreg Roachuse Fisharebest\Webtrees\Date;
19*ef21b467SGreg Roachuse Fisharebest\Webtrees\Individual;
20*ef21b467SGreg Roach
21*ef21b467SGreg Roach/**
22*ef21b467SGreg Roach * Is the individual's father a foreigner.
23*ef21b467SGreg Roach */
24*ef21b467SGreg Roachclass CensusColumnFatherForeign extends AbstractCensusColumn implements CensusColumnInterface {
25*ef21b467SGreg Roach	/**
26*ef21b467SGreg Roach	 * Generate the likely value of this census column, based on available information.
27*ef21b467SGreg Roach	 *
28*ef21b467SGreg Roach	 * @param Individual $individual
29*ef21b467SGreg Roach	 *
30*ef21b467SGreg Roach	 * @return string
31*ef21b467SGreg Roach	 */
32*ef21b467SGreg Roach	public function generate(Individual $individual) {
33*ef21b467SGreg Roach		return '';
34*ef21b467SGreg Roach	}
35*ef21b467SGreg Roach}
36