xref: /webtrees/app/Census/CensusOfUnitedStates1810.php (revision e7f56f2af615447ab1a7646851f88b465ace9e04)
181d1be7aSGreg Roach<?php
281d1be7aSGreg Roach/**
381d1be7aSGreg Roach * webtrees: online genealogy
481d1be7aSGreg Roach * Copyright (C) 2015 webtrees development team
581d1be7aSGreg Roach * This program is free software: you can redistribute it and/or modify
681d1be7aSGreg Roach * it under the terms of the GNU General Public License as published by
781d1be7aSGreg Roach * the Free Software Foundation, either version 3 of the License, or
881d1be7aSGreg Roach * (at your option) any later version.
981d1be7aSGreg Roach * This program is distributed in the hope that it will be useful,
1081d1be7aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1181d1be7aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1281d1be7aSGreg Roach * GNU General Public License for more details.
1381d1be7aSGreg Roach * You should have received a copy of the GNU General Public License
1481d1be7aSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
1581d1be7aSGreg Roach */
16*e7f56f2aSGreg Roachdeclare(strict_types=1);
1715d603e7SGreg Roach
1881d1be7aSGreg Roachnamespace Fisharebest\Webtrees\Census;
1981d1be7aSGreg Roach
2081d1be7aSGreg Roach/**
2181d1be7aSGreg Roach * Definitions for a census
2281d1be7aSGreg Roach */
23c1010edaSGreg Roachclass CensusOfUnitedStates1810 extends CensusOfUnitedStates implements CensusInterface
24c1010edaSGreg Roach{
2581d1be7aSGreg Roach    /**
2681d1be7aSGreg Roach     * When did this census occur.
2781d1be7aSGreg Roach     *
2881d1be7aSGreg Roach     * @return string
2981d1be7aSGreg Roach     */
308f53f488SRico Sonntag    public function censusDate(): string
31c1010edaSGreg Roach    {
3281d1be7aSGreg Roach        return '06 AUG 1810';
3381d1be7aSGreg Roach    }
3481d1be7aSGreg Roach
3581d1be7aSGreg Roach    /**
3681d1be7aSGreg Roach     * The columns of the census.
3781d1be7aSGreg Roach     *
3881d1be7aSGreg Roach     * @return CensusColumnInterface[]
3981d1be7aSGreg Roach     */
408f53f488SRico Sonntag    public function columns(): array
41c1010edaSGreg Roach    {
4213abd6f3SGreg Roach        return [
433e615db9SGreg Roach            new CensusColumnFullName($this, 'Name', 'Name of head of family'),
443e615db9SGreg Roach            new CensusColumnNull($this, 'M0-10', 'Free white males 0-10 years'),
453e615db9SGreg Roach            new CensusColumnNull($this, 'M10-16', 'Free white males 10-16 years'),
463e615db9SGreg Roach            new CensusColumnNull($this, 'M16-26', 'Free white males 16-26 years'),
473e615db9SGreg Roach            new CensusColumnNull($this, 'M26-45', 'Free white males 26-45 years'),
483e615db9SGreg Roach            new CensusColumnNull($this, 'M45+', 'Free white males 45+ years'),
493e615db9SGreg Roach            new CensusColumnNull($this, 'F0-10', 'Free white females 0-10 years'),
503e615db9SGreg Roach            new CensusColumnNull($this, 'F10-16', 'Free white females 10-16 years'),
513e615db9SGreg Roach            new CensusColumnNull($this, 'F16-26', 'Free white females 16-26 years'),
523e615db9SGreg Roach            new CensusColumnNull($this, 'F26-45', 'Free white females 26-45 years'),
533e615db9SGreg Roach            new CensusColumnNull($this, 'F45+', 'Free white females 45+ years'),
543e615db9SGreg Roach            new CensusColumnNull($this, 'Free', 'All other free persons, except Indians not taxed'),
5581d1be7aSGreg Roach            new CensusColumnNull($this, 'Slaves', 'Number of slaves'),
5681d1be7aSGreg Roach            new CensusColumnNull($this, 'Total', 'Total number of individuals'),
5781d1be7aSGreg Roach
5813abd6f3SGreg Roach        ];
5981d1be7aSGreg Roach    }
6081d1be7aSGreg Roach}
61