. */ namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ class CensusOfUnitedStates1920 extends CensusOfUnitedStates implements CensusInterface { /** * When did this census occur. * * @return string */ public function censusDate() { return 'JAN 1920'; } /** * The columns of the census. * * @return CensusColumnInterface[] */ public function columns() { return array( new CensusColumnSurnameGivenNameInitial($this, 'Name', 'Name'), new CensusColumnRelationToHead($this, 'Relation', 'Relationship of each person to the head of the family'), new CensusColumnNull($this, 'Home', 'Owned or rented'), new CensusColumnNull($this, 'Mort', 'If owned, free or mortgaged'), new CensusColumnSexMF($this, 'Sex', 'Sex'), new CensusColumnNull($this, 'Race', 'Color or race'), new CensusColumnAge($this, 'Age', 'Age at last birthday'), new CensusColumnNull($this, 'Condition', 'Whether single, married, widowed, or divorced'), new CensusColumnNull($this, 'Imm', 'Year of immigration to the United States'), new CensusColumnNull($this, 'Nat', 'Naturalized or alien'), new CensusColumnNull($this, 'NatY', 'If naturalized, year of naturalization'), new CensusColumnNull($this, 'School', 'Attended school since Sept. 1, 1919'), new CensusColumnNull($this, 'Read', 'Whether able to read'), new CensusColumnNull($this, 'Write', 'Whether able to write'), new CensusColumnBirthPlaceSimple($this, 'Birthplace', 'Place of birth'), new CensusColumnNull($this, 'Language', 'Mother tongue'), new CensusColumnFatherBirthPlaceSimple($this, 'Father’s birthplace', 'Place of birth of father'), new CensusColumnNull($this, 'Father language', 'Mother tongue of father'), new CensusColumnFatherBirthPlaceSimple($this, 'Mother’s birthplace', 'Place of birth of mother'), new CensusColumnNull($this, 'Mother language', 'Mother tongue of mother'), new CensusColumnNull($this, 'English', 'Whether able to speak English'), new CensusColumnOccupation($this, 'Occupation', 'Trade, profession, or particular kind of work done'), new CensusColumnNull($this, 'Ind', 'Industry, business of establishment in which at work'), new CensusColumnNull($this, 'Emp', 'Employer, salary or wage worker, or work on own account'), ); } }