xref: /webtrees/app/Census/CensusOfUnitedStates1790.php (revision d11be7027e34e3121be11cc025421873364403f9)
181d1be7aSGreg Roach<?php
23976b470SGreg Roach
381d1be7aSGreg Roach/**
481d1be7aSGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
681d1be7aSGreg Roach * This program is free software: you can redistribute it and/or modify
781d1be7aSGreg Roach * it under the terms of the GNU General Public License as published by
881d1be7aSGreg Roach * the Free Software Foundation, either version 3 of the License, or
981d1be7aSGreg Roach * (at your option) any later version.
1081d1be7aSGreg Roach * This program is distributed in the hope that it will be useful,
1181d1be7aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1281d1be7aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1381d1be7aSGreg Roach * GNU General Public License for more details.
1481d1be7aSGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
1681d1be7aSGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
1915d603e7SGreg Roach
2081d1be7aSGreg Roachnamespace Fisharebest\Webtrees\Census;
2181d1be7aSGreg Roach
2281d1be7aSGreg Roach/**
2381d1be7aSGreg Roach * Definitions for a census
2481d1be7aSGreg Roach */
25c1010edaSGreg Roachclass CensusOfUnitedStates1790 extends CensusOfUnitedStates implements CensusInterface
26c1010edaSGreg Roach{
2781d1be7aSGreg Roach    /**
2881d1be7aSGreg Roach     * When did this census occur.
2981d1be7aSGreg Roach     *
3081d1be7aSGreg Roach     * @return string
3181d1be7aSGreg Roach     */
328f53f488SRico Sonntag    public function censusDate(): string
33c1010edaSGreg Roach    {
3481d1be7aSGreg Roach        return '02 AUG 1790';
3581d1be7aSGreg Roach    }
3681d1be7aSGreg Roach
3781d1be7aSGreg Roach    /**
3881d1be7aSGreg Roach     * The columns of the census.
3981d1be7aSGreg Roach     *
4009482a55SGreg Roach     * @return array<CensusColumnInterface>
4181d1be7aSGreg Roach     */
428f53f488SRico Sonntag    public function columns(): array
43c1010edaSGreg Roach    {
4413abd6f3SGreg Roach        return [
453e615db9SGreg Roach            new CensusColumnFullName($this, 'Name', 'Name of head of family'),
463e615db9SGreg Roach            new CensusColumnOccupation($this, 'Occupation', 'Professions and occupation'),
473e615db9SGreg Roach            new CensusColumnNull($this, 'White male 16+', 'White male of 16 yrs upward'),
483e615db9SGreg Roach            new CensusColumnNull($this, 'White male 0-16', 'White males of under 16 yrs'),
493e615db9SGreg Roach            new CensusColumnNull($this, 'White female', 'All White Females'),
503e615db9SGreg Roach            new CensusColumnNull($this, 'Free', 'All other free persons'),
5181d1be7aSGreg Roach            new CensusColumnNull($this, 'Slaves', 'Number of slaves'),
523e615db9SGreg Roach            new CensusColumnNull($this, 'Total', 'Total'),
5313abd6f3SGreg Roach        ];
5481d1be7aSGreg Roach    }
5581d1be7aSGreg Roach}
56