. */ namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\Individual; /** * Birth place of the individual's mother. */ class CensusColumnMotherBirthPlace 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 = null) { $mother = $this->mother($individual); if ($mother) { return $this->notCountry($mother->getBirthPlace()->getGedcomName()); } else { return ''; } } }