xref: /webtrees/app/Census/CensusOfUnitedStates1840.php (revision 73df4c545c87012519818766e1a8eb02272a59b5)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2015 webtrees development team
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16namespace Fisharebest\Webtrees\Census;
17
18/**
19 * Definitions for a census
20 */
21class CensusOfUnitedStates1840 extends CensusOfUnitedStates implements CensusInterface {
22	/**
23	 * When did this census occur.
24	 *
25	 * @return string
26	 */
27	public function censusDate() {
28		return '01 JUN 1840';
29	}
30
31	/**
32	 * The columns of the census.
33	 *
34	 * @return CensusColumnInterface[]
35	 */
36	public function columns() {
37		return array(
38
39			new CensusColumnFullName($this, 'Name', 'Name of head of family'),
40			new CensusColumnNull($this, 'M0', 'Free white males 0-5 years'),
41			new CensusColumnNull($this, 'M5', 'Free white males 5-10 years'),
42			new CensusColumnNull($this, 'M10', 'Free white males 10-15 years'),
43			new CensusColumnNull($this, 'M15', 'Free white males 15-20 years'),
44			new CensusColumnNull($this, 'M20', 'Free white males 20-30 years'),
45			new CensusColumnNull($this, 'M30', 'Free white males 30-40 years'),
46			new CensusColumnNull($this, 'M40', 'Free white males 40-50 years'),
47			new CensusColumnNull($this, 'M50', 'Free white males 50-60 years'),
48			new CensusColumnNull($this, 'M60', 'Free white males 60-70 years'),
49			new CensusColumnNull($this, 'M70', 'Free white males 70-80 years'),
50			new CensusColumnNull($this, 'M80', 'Free white males 80-90 years'),
51			new CensusColumnNull($this, 'M90', 'Free white males 90-100 years'),
52			new CensusColumnNull($this, 'M100', 'Free white males 100+ years'),
53			new CensusColumnNull($this, 'F0', 'Free white females 0-5 years'),
54			new CensusColumnNull($this, 'F5', 'Free white females 5-10 years'),
55			new CensusColumnNull($this, 'F10', 'Free white females 10-15 years'),
56			new CensusColumnNull($this, 'F15', 'Free white females 15-20 years'),
57			new CensusColumnNull($this, 'F20', 'Free white females 20-30 years'),
58			new CensusColumnNull($this, 'F30', 'Free white females 30-40 years'),
59			new CensusColumnNull($this, 'F40', 'Free white females 40-50 years'),
60			new CensusColumnNull($this, 'F50', 'Free white females 50-60 years'),
61			new CensusColumnNull($this, 'F60', 'Free white females 60-70 years'),
62			new CensusColumnNull($this, 'F70', 'Free white females 70-80 years'),
63			new CensusColumnNull($this, 'F80', 'Free white females 80-90 years'),
64			new CensusColumnNull($this, 'F90', 'Free white females 90-100 years'),
65			new CensusColumnNull($this, 'F100', 'Free white females 100+ years'),
66			new CensusColumnNull($this, 'M0', 'Free colored males 0-10 years'),
67			new CensusColumnNull($this, 'M10', 'Free colored males 10-24 years'),
68			new CensusColumnNull($this, 'M24', 'Free colored males 24-36 years'),
69			new CensusColumnNull($this, 'M36', 'Free colored males 36-55 years'),
70			new CensusColumnNull($this, 'M55', 'Free colored males 55-100 years'),
71			new CensusColumnNull($this, 'M100', 'Free colored males 100+ years'),
72			new CensusColumnNull($this, 'F0', 'Free colored females 0-10 years'),
73			new CensusColumnNull($this, 'F10', 'Free colored females 10-24 years'),
74			new CensusColumnNull($this, 'F24', 'Free colored females 24-36 years'),
75			new CensusColumnNull($this, 'F36', 'Free colored females 36-55 years'),
76			new CensusColumnNull($this, 'F55', 'Free colored females 55-100 years'),
77			new CensusColumnNull($this, 'F100', 'Free colored females 100+ years'),
78		);
79	}
80}
81