summaryrefslogtreecommitdiff
path: root/app/Census/CensusOfWales1851.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-09-25 18:39:16 +0100
committerGreg Roach <fisharebest@gmail.com>2015-09-26 16:20:37 +0100
commitef21b467575956631eb5374fe4f2bfb94e69aaa9 (patch)
treed6d535cdc6ea24cc091300612aa50c8a62d32c9d /app/Census/CensusOfWales1851.php
parentdb7d25eeb5ba43cdc3662cbee9ceabb8d61c7ab5 (diff)
downloadwebtrees-ef21b467575956631eb5374fe4f2bfb94e69aaa9.tar.gz
webtrees-ef21b467575956631eb5374fe4f2bfb94e69aaa9.tar.bz2
webtrees-ef21b467575956631eb5374fe4f2bfb94e69aaa9.zip
Census definitions
Diffstat (limited to 'app/Census/CensusOfWales1851.php')
-rw-r--r--app/Census/CensusOfWales1851.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/app/Census/CensusOfWales1851.php b/app/Census/CensusOfWales1851.php
index 0e536b2ee5..beb1184419 100644
--- a/app/Census/CensusOfWales1851.php
+++ b/app/Census/CensusOfWales1851.php
@@ -37,7 +37,14 @@ class CensusOfWales1851 extends CensusOfWales implements CensusInterface {
*/
public function columns() {
return array(
- new CensusColumnFullName($this),
+ new CensusColumnFullName($this, 'Name', 'Name and surname'),
+ new CensusColumnRelationToHead($this, 'Relation', 'Relation to head of household'),
+ new CensusColumnCondition($this, 'Condition', 'Condition'),
+ new CensusColumnAgeMale($this, 'AgeM', 'Age (males)'),
+ new CensusColumnAgeFemale($this, 'AgeF', 'Age (females)'),
+ new CensusColumnOccupation($this, 'Occupation', 'Rank, profession or occupation'),
+ new CensusColumnBirthPlace($this, 'Birthplace', 'Where born'),
+ new CensusColumnNull($this, 'Infirm', 'Whether blind or deaf-and-dumb'),
);
}
}