xref: /webtrees/app/Census/CensusOfUnitedStates1840.php (revision 8121b9bec19818120092699199161a1357bb8f3f)
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 */
16declare(strict_types=1);
17
18namespace Fisharebest\Webtrees\Census;
19
20/**
21 * Definitions for a census
22 */
23class CensusOfUnitedStates1840 extends CensusOfUnitedStates implements CensusInterface
24{
25    /**
26     * When did this census occur.
27     *
28     * @return string
29     */
30    public function censusDate(): string
31    {
32        return '01 JUN 1840';
33    }
34
35    /**
36     * The columns of the census.
37     *
38     * @return CensusColumnInterface[]
39     */
40    public function columns(): array
41    {
42        return [
43
44            new CensusColumnFullName($this, 'Name', 'Name of head of family'),
45            new CensusColumnNull($this, 'M0', 'Free white males 0-5 years'),
46            new CensusColumnNull($this, 'M5', 'Free white males 5-10 years'),
47            new CensusColumnNull($this, 'M10', 'Free white males 10-15 years'),
48            new CensusColumnNull($this, 'M15', 'Free white males 15-20 years'),
49            new CensusColumnNull($this, 'M20', 'Free white males 20-30 years'),
50            new CensusColumnNull($this, 'M30', 'Free white males 30-40 years'),
51            new CensusColumnNull($this, 'M40', 'Free white males 40-50 years'),
52            new CensusColumnNull($this, 'M50', 'Free white males 50-60 years'),
53            new CensusColumnNull($this, 'M60', 'Free white males 60-70 years'),
54            new CensusColumnNull($this, 'M70', 'Free white males 70-80 years'),
55            new CensusColumnNull($this, 'M80', 'Free white males 80-90 years'),
56            new CensusColumnNull($this, 'M90', 'Free white males 90-100 years'),
57            new CensusColumnNull($this, 'M100', 'Free white males 100+ years'),
58            new CensusColumnNull($this, 'F0', 'Free white females 0-5 years'),
59            new CensusColumnNull($this, 'F5', 'Free white females 5-10 years'),
60            new CensusColumnNull($this, 'F10', 'Free white females 10-15 years'),
61            new CensusColumnNull($this, 'F15', 'Free white females 15-20 years'),
62            new CensusColumnNull($this, 'F20', 'Free white females 20-30 years'),
63            new CensusColumnNull($this, 'F30', 'Free white females 30-40 years'),
64            new CensusColumnNull($this, 'F40', 'Free white females 40-50 years'),
65            new CensusColumnNull($this, 'F50', 'Free white females 50-60 years'),
66            new CensusColumnNull($this, 'F60', 'Free white females 60-70 years'),
67            new CensusColumnNull($this, 'F70', 'Free white females 70-80 years'),
68            new CensusColumnNull($this, 'F80', 'Free white females 80-90 years'),
69            new CensusColumnNull($this, 'F90', 'Free white females 90-100 years'),
70            new CensusColumnNull($this, 'F100', 'Free white females 100+ years'),
71            new CensusColumnNull($this, 'M0', 'Free colored males 0-10 years'),
72            new CensusColumnNull($this, 'M10', 'Free colored males 10-24 years'),
73            new CensusColumnNull($this, 'M24', 'Free colored males 24-36 years'),
74            new CensusColumnNull($this, 'M36', 'Free colored males 36-55 years'),
75            new CensusColumnNull($this, 'M55', 'Free colored males 55-100 years'),
76            new CensusColumnNull($this, 'M100', 'Free colored males 100+ years'),
77            new CensusColumnNull($this, 'F0', 'Free colored females 0-10 years'),
78            new CensusColumnNull($this, 'F10', 'Free colored females 10-24 years'),
79            new CensusColumnNull($this, 'F24', 'Free colored females 24-36 years'),
80            new CensusColumnNull($this, 'F36', 'Free colored females 36-55 years'),
81            new CensusColumnNull($this, 'F55', 'Free colored females 55-100 years'),
82            new CensusColumnNull($this, 'F100', 'Free colored females 100+ years'),
83        ];
84    }
85}
86