xref: /webtrees/app/Census/CensusOfUnitedStates1890.php (revision c073d66e7fca7a82c541a00aad3d0ae103d0e141)
14ccf2a72SGreg Roach<?php
23976b470SGreg Roach
34ccf2a72SGreg Roach/**
44ccf2a72SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
64ccf2a72SGreg Roach * This program is free software: you can redistribute it and/or modify
74ccf2a72SGreg Roach * it under the terms of the GNU General Public License as published by
84ccf2a72SGreg Roach * the Free Software Foundation, either version 3 of the License, or
94ccf2a72SGreg Roach * (at your option) any later version.
104ccf2a72SGreg Roach * This program is distributed in the hope that it will be useful,
114ccf2a72SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
124ccf2a72SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
134ccf2a72SGreg Roach * GNU General Public License for more details.
144ccf2a72SGreg 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/>.
164ccf2a72SGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
1915d603e7SGreg Roach
204ccf2a72SGreg Roachnamespace Fisharebest\Webtrees\Census;
214ccf2a72SGreg Roach
224ccf2a72SGreg Roach/**
234ccf2a72SGreg Roach * Definitions for a census
244ccf2a72SGreg Roach */
25c1010edaSGreg Roachclass CensusOfUnitedStates1890 extends CensusOfUnitedStates implements CensusInterface
26c1010edaSGreg Roach{
274ccf2a72SGreg Roach    /**
284ccf2a72SGreg Roach     * When did this census occur.
294ccf2a72SGreg Roach     *
304ccf2a72SGreg Roach     * @return string
314ccf2a72SGreg Roach     */
328f53f488SRico Sonntag    public function censusDate(): string
33c1010edaSGreg Roach    {
344ccf2a72SGreg Roach        return '02 JUN 1890';
354ccf2a72SGreg Roach    }
364ccf2a72SGreg Roach
374ccf2a72SGreg Roach    /**
384ccf2a72SGreg Roach     * The columns of the census.
394ccf2a72SGreg Roach     *
4009482a55SGreg Roach     * @return array<CensusColumnInterface>
414ccf2a72SGreg Roach     */
428f53f488SRico Sonntag    public function columns(): array
43c1010edaSGreg Roach    {
4413abd6f3SGreg Roach        return [
45f3fa6d90SGreg Roach            new CensusColumnGivenNameInitial($this, 'Name', 'Christian name in full, and initial of middle name'),
46f3fa6d90SGreg Roach            new CensusColumnSurname($this, 'Surname', 'Surname'),
47f3fa6d90SGreg Roach            new CensusColumnNull($this, 'CW', 'Whether a soldier, sailor or marine during the civil war (U.S. or Conf.), or widow of such person'),
48d5b0584dSGreg Roach            new CensusColumnRelationToHeadEnglish($this, 'Relation', 'Relation to head of family'),
49f3fa6d90SGreg Roach            new CensusColumnNull($this, 'Race', 'Whether white, black, mulatto, quadroon, octoroon, Chinese, Japanese, or Indian'),
50f3fa6d90SGreg Roach            new CensusColumnSexMF($this, 'Sex', 'Sex'),
51f3fa6d90SGreg Roach            new CensusColumnAge($this, 'Age', 'Age at nearest birthday. If under one year, give age in months'),
5281d1be7aSGreg Roach            new CensusColumnConditionUs($this, 'Cond', 'Whether single, married, widowed, or divorced'),
53*c073d66eSGreg Roach            new CensusColumnMonthIfMarriedWithinYear($this, 'Mar', 'Whether married during the census year (June 1, 1889, to May 31, 1890)'),
5481d1be7aSGreg Roach            new CensusColumnNull($this, 'Chil', 'Mother of how many children, and number of these children living'),
5581d1be7aSGreg Roach            new CensusColumnBirthPlaceSimple($this, 'BP', 'Place of birth'),
5681d1be7aSGreg Roach            new CensusColumnFatherBirthPlaceSimple($this, 'FBP', 'Place of birth of father'),
5781d1be7aSGreg Roach            new CensusColumnFatherBirthPlaceSimple($this, 'MBP', 'Place of birth of mother'),
58f3fa6d90SGreg Roach            new CensusColumnNull($this, 'US', 'Number of years in the United States'),
59f3fa6d90SGreg Roach            new CensusColumnNull($this, 'Nat', 'Whether naturalized'),
60f3fa6d90SGreg Roach            new CensusColumnNull($this, 'Papers', 'Whether naturalization papers have been taken out'),
61f3fa6d90SGreg Roach            new CensusColumnOccupation($this, 'Occupation', 'Profession, trade, occupation'),
6281d1be7aSGreg Roach            new CensusColumnNull($this, 'Unemp', 'Months unemployed during the census year (June 1, 1889, to May 31, 1890)'),
63f3fa6d90SGreg Roach            new CensusColumnNull($this, 'Read', 'Able to read'),
64f3fa6d90SGreg Roach            new CensusColumnNull($this, 'Write', 'Able to write'),
6581d1be7aSGreg Roach            new CensusColumnNull($this, 'Eng', 'Able to speak English. If not the language or dialect spoken'),
66f3fa6d90SGreg Roach            new CensusColumnNull($this, 'Disease', 'Whether suffering from acute or chronic disease, with name of disease and length of time afflicted'),
67f3fa6d90SGreg Roach            new CensusColumnNull($this, 'Infirm', 'Whether defective in mind, sight, hearing, or speech, or whether crippled, maimed, or deformed, with name of defect'),
68f3fa6d90SGreg Roach            new CensusColumnNull($this, 'Prisoner', 'Whether a prisoner, convict, homeless child, or pauper'),
6913abd6f3SGreg Roach        ];
704ccf2a72SGreg Roach    }
714ccf2a72SGreg Roach}
72