diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-10-22 22:43:03 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-10-22 22:43:03 +0100 |
| commit | 884b36a7f2ed93d36034ab149143f4bd646d4437 (patch) | |
| tree | 1f9ee4322be0b5258fd1725108a00e8a53f43d13 /app/Census | |
| parent | 2c9f0210e312f5a9da26db20890811008d029571 (diff) | |
| download | webtrees-884b36a7f2ed93d36034ab149143f4bd646d4437.tar.gz webtrees-884b36a7f2ed93d36034ab149143f4bd646d4437.tar.bz2 webtrees-884b36a7f2ed93d36034ab149143f4bd646d4437.zip | |
US 1870 census
Diffstat (limited to 'app/Census')
| -rw-r--r-- | app/Census/CensusOfUnitedStates1870.php | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/app/Census/CensusOfUnitedStates1870.php b/app/Census/CensusOfUnitedStates1870.php index 1c57318d7c..487b95bbaa 100644 --- a/app/Census/CensusOfUnitedStates1870.php +++ b/app/Census/CensusOfUnitedStates1870.php @@ -37,24 +37,24 @@ class CensusOfUnitedStates1870 extends CensusOfUnitedStates implements CensusInt */ public function columns() { return array( - new CensusColumnFullName($this, '', ''), - new CensusColumnAge($this, '', ''), - new CensusColumnSexMF($this, '', ''), - new CensusColumnNull($this, '', ''), // Race - new CensusColumnOccupation($this, '', ''), - new CensusColumnNull($this, '', ''), // Value of real estate owned - new CensusColumnNull($this, '', ''), // Value of personal estate owned - new CensusColumnBirthPlace($this, '', ''), - new CensusColumnFatherForeign($this, '', ''), - new CensusColumnMotherForeign($this, '', ''), - new CensusColumnMonthIfBornWithinYear($this, '', ''), - new CensusColumnMonthIfMarriedWithinYear($this, '', ''), - new CensusColumnNull($this, '', ''), // Attended school within year - new CensusColumnNull($this, '', ''), // Can read - new CensusColumnNull($this, '', ''), // Can write - new CensusColumnNull($this, '', ''), // Infirm - new CensusColumnNull($this, '', ''), // US adult male citizen - new CensusColumnNull($this, '', ''), // Disenfranchised + new CensusColumnFullName($this, 'Name', 'Name'), + new CensusColumnAge($this, 'Age', 'Age'), + new CensusColumnSexMF($this, 'Sex', 'Sex'), + new CensusColumnNull($this, 'Color', 'White, Black, Mulatto, Chinese, Indian'), + new CensusColumnOccupation($this, 'Occupation', 'Profession, occupation, or trade'), + new CensusColumnNull($this, 'RE', 'Value of real estate owned'), + new CensusColumnNull($this, 'PE', 'Value of personal estate owned'), + new CensusColumnBirthPlaceUnitedStates($this, 'Birthplace', 'Place of birth, naming the state, territory, or country'), + new CensusColumnFatherForeign($this, 'FFB', 'Father of foreign birth'), + new CensusColumnMotherForeign($this, 'MFB', 'Mother of foreign birth'), + new CensusColumnMonthIfBornWithinYear($this, 'Born', 'If born within the year, state month'), + new CensusColumnMonthIfMarriedWithinYear($this, 'Mar', 'If married within the year, state month'), + new CensusColumnNull($this, 'Sch', 'Attended school within the year'), + new CensusColumnNull($this, 'R', 'Cannot read'), + new CensusColumnNull($this, 'W', 'Cannot write'), + new CensusColumnNull($this, 'Infirm', 'Whether deaf and dumb, blind, insane, or idiotic'), + new CensusColumnNull($this, 'Cit', 'Male citizen of US'), + new CensusColumnNull($this, 'Dis', 'Male citizen of US, where right to vote is denied or abridged'), ); } } |
