1*81d1be7aSGreg Roach<?php 2*81d1be7aSGreg Roach/** 3*81d1be7aSGreg Roach * webtrees: online genealogy 4*81d1be7aSGreg Roach * Copyright (C) 2015 webtrees development team 5*81d1be7aSGreg Roach * This program is free software: you can redistribute it and/or modify 6*81d1be7aSGreg Roach * it under the terms of the GNU General Public License as published by 7*81d1be7aSGreg Roach * the Free Software Foundation, either version 3 of the License, or 8*81d1be7aSGreg Roach * (at your option) any later version. 9*81d1be7aSGreg Roach * This program is distributed in the hope that it will be useful, 10*81d1be7aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 11*81d1be7aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12*81d1be7aSGreg Roach * GNU General Public License for more details. 13*81d1be7aSGreg Roach * You should have received a copy of the GNU General Public License 14*81d1be7aSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 15*81d1be7aSGreg Roach */ 16*81d1be7aSGreg Roachnamespace Fisharebest\Webtrees\Census; 17*81d1be7aSGreg Roach 18*81d1be7aSGreg Roach/** 19*81d1be7aSGreg Roach * Definitions for a census 20*81d1be7aSGreg Roach */ 21*81d1be7aSGreg Roachclass CensusOfUnitedStates1840 extends CensusOfUnitedStates implements CensusInterface { 22*81d1be7aSGreg Roach /** 23*81d1be7aSGreg Roach * When did this census occur. 24*81d1be7aSGreg Roach * 25*81d1be7aSGreg Roach * @return string 26*81d1be7aSGreg Roach */ 27*81d1be7aSGreg Roach public function censusDate() { 28*81d1be7aSGreg Roach return '01 JUN 1840'; 29*81d1be7aSGreg Roach } 30*81d1be7aSGreg Roach 31*81d1be7aSGreg Roach /** 32*81d1be7aSGreg Roach * The columns of the census. 33*81d1be7aSGreg Roach * 34*81d1be7aSGreg Roach * @return CensusColumnInterface[] 35*81d1be7aSGreg Roach */ 36*81d1be7aSGreg Roach public function columns() { 37*81d1be7aSGreg Roach return array( 38*81d1be7aSGreg Roach 39*81d1be7aSGreg Roach new CensusColumnFullName($this, 'Name', 'Name'), 40*81d1be7aSGreg Roach new CensusColumnRelationToHead($this, 'Relation', 'Relation to head of household'), 41*81d1be7aSGreg Roach new CensusColumnAge($this, 'Age', 'Age'), 42*81d1be7aSGreg Roach new CensusColumnSexMF($this, 'Sex', 'Sex'), 43*81d1be7aSGreg Roach new CensusColumnNull($this, 'Slaves', 'Slaves'), 44*81d1be7aSGreg Roach new CensusColumnNull($this, 'Free colored', 'Free colored persons'), 45*81d1be7aSGreg Roach new CensusColumnNull($this, 'Infirm', 'Whether deaf and dumb or blind'), 46*81d1be7aSGreg Roach new CensusColumnNull($this, 'FNR', 'Foreigners not naturalized'), 47*81d1be7aSGreg Roach new CensusColumnNull($this, 'Other Infirm', 'Slaves & colored deaf and dumb or blind'), 48*81d1be7aSGreg Roach 49*81d1be7aSGreg Roach ); 50*81d1be7aSGreg Roach } 51*81d1be7aSGreg Roach} 52