1*81d1be7aSGreg Roach<?php 2*81d1be7aSGreg Roach/** 3*81d1be7aSGreg Roach * webtrees: online genealogy 4*81d1be7aSGreg Roach * Copyright (C) 2015 webtrees development team 5*81d1be7aSGreg Roach * This program is free software: you can redistribute it and/or modify 6*81d1be7aSGreg Roach * it under the terms of the GNU General Public License as published by 7*81d1be7aSGreg Roach * the Free Software Foundation, either version 3 of the License, or 8*81d1be7aSGreg Roach * (at your option) any later version. 9*81d1be7aSGreg Roach * This program is distributed in the hope that it will be useful, 10*81d1be7aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 11*81d1be7aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12*81d1be7aSGreg Roach * GNU General Public License for more details. 13*81d1be7aSGreg Roach * You should have received a copy of the GNU General Public License 14*81d1be7aSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 15*81d1be7aSGreg Roach */ 16*81d1be7aSGreg Roachnamespace Fisharebest\Webtrees\Census; 17*81d1be7aSGreg Roach 18*81d1be7aSGreg Roach/** 19*81d1be7aSGreg Roach * Definitions for a census 20*81d1be7aSGreg Roach */ 21*81d1be7aSGreg Roachclass CensusOfUnitedStates1940 extends CensusOfUnitedStates implements CensusInterface { 22*81d1be7aSGreg Roach /** 23*81d1be7aSGreg Roach * When did this census occur. 24*81d1be7aSGreg Roach * 25*81d1be7aSGreg Roach * @return string 26*81d1be7aSGreg Roach */ 27*81d1be7aSGreg Roach public function censusDate() { 28*81d1be7aSGreg Roach return 'APR 1940'; 29*81d1be7aSGreg Roach } 30*81d1be7aSGreg Roach 31*81d1be7aSGreg Roach /** 32*81d1be7aSGreg Roach * The columns of the census. 33*81d1be7aSGreg Roach * 34*81d1be7aSGreg Roach * @return CensusColumnInterface[] 35*81d1be7aSGreg Roach */ 36*81d1be7aSGreg Roach public function columns() { 37*81d1be7aSGreg Roach return array( 38*81d1be7aSGreg Roach new CensusColumnFullName($this, 'Name', 'Name'), 39*81d1be7aSGreg Roach new CensusColumnRelationToHead($this, 'Relation', 'Relationship of each person to the head of the family'), 40*81d1be7aSGreg Roach new CensusColumnNull($this, 'Home', 'Home owned or rented'), 41*81d1be7aSGreg Roach new CensusColumnNull($this, 'V/R', 'Value of house, if owned, or monthly rental if rented'), 42*81d1be7aSGreg Roach new CensusColumnNull($this, 'Farm', 'Does this family live on a farm'), 43*81d1be7aSGreg Roach new CensusColumnSexMF($this, 'Sex', 'Sex'), 44*81d1be7aSGreg Roach new CensusColumnNull($this, 'Race', 'Color or race'), 45*81d1be7aSGreg Roach new CensusColumnAge($this, 'Age', 'Age at last birthday'), 46*81d1be7aSGreg Roach new CensusColumnConditionUs($this, 'Cond', 'Whether single, married, widowed, or divorced'), 47*81d1be7aSGreg Roach new CensusColumnAgeMarried($this, 'AM', 'Age at first marriage'), 48*81d1be7aSGreg Roach new CensusColumnNull($this, 'School', 'Attended school since Sept. 1, 1929'), 49*81d1be7aSGreg Roach new CensusColumnNull($this, 'R/W', 'Whether able to read and write'), 50*81d1be7aSGreg Roach new CensusColumnBirthPlaceSimple($this, 'BP', 'Place of birth'), 51*81d1be7aSGreg Roach new CensusColumnFatherBirthPlaceSimple($this, 'FBP', 'Place of birth of father'), 52*81d1be7aSGreg Roach new CensusColumnMotherBirthPlaceSimple($this, 'MBP', 'Place of birth of mother'), 53*81d1be7aSGreg Roach new CensusColumnNull($this, 'Lang', 'Language spoken in home before coming to the United States'), 54*81d1be7aSGreg Roach new CensusColumnNull($this, 'Imm', 'Year of immigration to the United States'), 55*81d1be7aSGreg Roach new CensusColumnNull($this, 'Nat', 'Naturalization'), 56*81d1be7aSGreg Roach new CensusColumnNull($this, 'Eng', 'Whether able to speak English'), 57*81d1be7aSGreg Roach new CensusColumnOccupation($this, 'Occupation', 'Trade, profession, or particular kind of work done'), 58*81d1be7aSGreg Roach new CensusColumnNull($this, 'Industry', 'Industry, business of establishment in which at work'), 59*81d1be7aSGreg Roach new CensusColumnNull($this, 'Code', 'Industry code'), 60*81d1be7aSGreg Roach new CensusColumnNull($this, 'Emp', 'Class of worker'), 61*81d1be7aSGreg Roach new CensusColumnNull($this, 'Work', 'Whether normally at work yesterday or the last regular working day'), 62*81d1be7aSGreg Roach new CensusColumnNull($this, 'Unemp', 'If not, …'), 63*81d1be7aSGreg Roach new CensusColumnNull($this, 'Vet', 'Whether a veteran of U.S. military or …'), 64*81d1be7aSGreg Roach new CensusColumnNull($this, 'War', 'What war or …'), 65*81d1be7aSGreg Roach ); 66*81d1be7aSGreg Roach } 67*81d1be7aSGreg Roach} 68