summaryrefslogtreecommitdiff
path: root/app/Census/CensusOfUnitedStates1880.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-10-22 23:27:47 +0100
committerGreg Roach <fisharebest@gmail.com>2015-10-22 23:27:47 +0100
commita4500ed5f20510414ab3cde59bd1a55abbf68700 (patch)
treea48845504265da1faf4714168237ff7e00ee24af /app/Census/CensusOfUnitedStates1880.php
parent884b36a7f2ed93d36034ab149143f4bd646d4437 (diff)
downloadwebtrees-a4500ed5f20510414ab3cde59bd1a55abbf68700.tar.gz
webtrees-a4500ed5f20510414ab3cde59bd1a55abbf68700.tar.bz2
webtrees-a4500ed5f20510414ab3cde59bd1a55abbf68700.zip
US 1880 census
Diffstat (limited to 'app/Census/CensusOfUnitedStates1880.php')
-rw-r--r--app/Census/CensusOfUnitedStates1880.php24
1 files changed, 23 insertions, 1 deletions
diff --git a/app/Census/CensusOfUnitedStates1880.php b/app/Census/CensusOfUnitedStates1880.php
index deb2f03bdd..6d11ba49c4 100644
--- a/app/Census/CensusOfUnitedStates1880.php
+++ b/app/Census/CensusOfUnitedStates1880.php
@@ -37,7 +37,29 @@ class CensusOfUnitedStates1880 extends CensusOfUnitedStates implements CensusInt
*/
public function columns() {
return array(
- new CensusColumnNull($this, 'XXXX', 'XXXX'),
+ new CensusColumnFullName($this, 'Name', 'Name'),
+ new CensusColumnAge($this, 'Age', 'Age'),
+ new CensusColumnSexMF($this, 'Sex', 'Sex'),
+ new CensusColumnMonthIfBornWithinYear($this, 'Mon', 'If born within the year, state month'),
+ new CensusColumnRelationToHead($this, 'Relation', 'Relation to head of household'),
+ new CensusColumnNull($this, 'S', 'Single'),
+ new CensusColumnNull($this, 'M', 'Married'),
+ new CensusColumnNull($this, 'W', 'Widowed, Divorced'),
+ new CensusColumnNull($this, 'MY', 'Married during census year'),
+ new CensusColumnOccupation($this, 'Occupation', 'Profession, occupation, or trade'),
+ new CensusColumnNull($this, 'Un', 'Number of months the person has been unemployed during the census year'),
+ new CensusColumnNull($this, 'Sick', 'Sickness or disability'),
+ new CensusColumnNull($this, 'Bl', 'Blind'),
+ new CensusColumnNull($this, 'DD', 'Deaf and dumb'),
+ new CensusColumnNull($this, 'Id', 'Idiotic'),
+ new CensusColumnNull($this, 'In', 'Insane'),
+ new CensusColumnNull($this, 'Dis', 'Maimed, crippled, bedridden or otherwise disabled'),
+ new CensusColumnNull($this, 'Sch', 'Attended school within the census year'),
+ new CensusColumnNull($this, 'R', 'Cannot read'),
+ new CensusColumnNull($this, 'W', 'Cannot write'),
+ new CensusColumnBirthPlaceSimple($this, 'BP', 'Place of birth, naming the state, territory, or country'),
+ new CensusColumnFatherBirthPlaceSimple($this, 'FBP', 'Place of birth of father, naming the state, territory, or country'),
+ new CensusColumnMotherBirthPlaceSimple($this, 'MBP', 'Place of birth of mother, naming the state, territory, or country'),
);
}
}