xref: /webtrees/app/Census/CensusOfUnitedStates1820.php (revision 81d1be7af7bb2cdc6e1880877120cf2517064809)
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 CensusOfUnitedStates1820 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 '07 AUG 1820';
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
37*81d1be7aSGreg Roach	public function columns() {
38*81d1be7aSGreg Roach		return array(
39*81d1be7aSGreg Roach			new CensusColumnFullName($this, 'Name', 'Name'),
40*81d1be7aSGreg Roach			new CensusColumnRelationToHead($this, 'Relation', 'Relation to head of household'),
41*81d1be7aSGreg Roach			new CensusColumnAgeMaleUnder10Years($this, 'FWM-10', 'Free white males under 10'),
42*81d1be7aSGreg Roach			new CensusColumnAgeMale10To16Years($this, 'FWM10-16', 'Free white males 10<16'),
43*81d1be7aSGreg Roach            new CensusColumnAgeMale16To18Years($this, 'FWM16-18', 'Free white males 10<16'),
44*81d1be7aSGreg Roach			new CensusColumnAgeMale16To26Years($this, 'FWM16-26', 'Free white males 16<26, inc. head of family'),
45*81d1be7aSGreg Roach			new CensusColumnAgeMale26To45Years($this, 'FWM26-45', 'Free white males 26<45, inc. head of family'),
46*81d1be7aSGreg Roach			new CensusColumnAgeMale45UpYears($this, 'FWM45+', 'Free white males 45 up, inc. head of family'),
47*81d1be7aSGreg Roach			new CensusColumnAgeFemaleUnder10Years($this, 'FWF-10', 'Free white females under 10'),
48*81d1be7aSGreg Roach			new CensusColumnAgeFemale10To16Years($this, 'FWF10-16', 'Free white females 10<16'),
49*81d1be7aSGreg Roach			new CensusColumnAgeFemale16To26Years($this, 'FWF16-26', 'Free white females 16<26, inc. head of family'),
50*81d1be7aSGreg Roach			new CensusColumnAgeFemale26To45Years($this, 'FWF26-45', 'Free white females 26<45, inc. head of family'),
51*81d1be7aSGreg Roach			new CensusColumnAgeFemale45UpYears($this, 'FWF45+', 'Free white females 45 up'),
52*81d1be7aSGreg Roach			new CensusColumnNull($this, 'FNR', 'Foreigners not naturalized'),
53*81d1be7aSGreg Roach			new CensusColumnNull($this, 'AG', 'No. engaged in agriculture'),
54*81d1be7aSGreg Roach			new CensusColumnNull($this, 'COM', 'No. engaged in commerce'),
55*81d1be7aSGreg Roach            new CensusColumnNull($this, 'MNF', 'No. engaged in manufactures'),
56*81d1be7aSGreg Roach			new CensusColumnNull($this, 'Slaves', 'Slaves'),
57*81d1be7aSGreg Roach			new CensusColumnNull($this, 'FC', 'Free colored persons'),
58*81d1be7aSGreg Roach			new CensusColumnNull($this, 'Other', 'All other persons except indians non taxed'),
59*81d1be7aSGreg Roach
60*81d1be7aSGreg Roach		);
61*81d1be7aSGreg Roach	}
62*81d1be7aSGreg Roach}