. */ namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\Date; /** * Definitions for a census */ class CensusOfDenmark1803 extends CensusOfDenmark implements CensusInterface { /** * When did this census occur. * * @return string */ public function censusDate() { return '01 FEB 1803'; } /** * Where did this census occur, in GEDCOM format. * * @return string */ public function censusPlace() { return 'Schleswig-Holstein, Deutschland'; } /** * The columns of the census. * * @return CensusColumnInterface[] */ public function columns() { return array( new CensusColumnFullName($this, 'TBC', 'To be confirmed'), new CensusColumnAge($this, 'TBC', 'To be confirmed'), new CensusColumnConditionEnglish($this, 'TBC', 'To be confirmed'), new CensusColumnRelationToHead($this, 'TBC', 'To be confirmed'), new CensusColumnOccupation($this, 'TBC', 'To be confirmed'), ); } }