. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; /** * Definitions for a census */ class CensusOfCanada1901 extends CensusOfCanada implements CensusInterface { /** * When did this census occur. * * @return string */ public function censusDate(): string { return '31 MAR 1901'; } /** * The columns of the census. * * @return CensusColumnInterface[] */ public function columns(): array { return [ new CensusColumnFullName($this, 'Name', 'Name'), new CensusColumnSexMF($this, 'Sex', 'Sex'), new CensusColumnNull($this, 'Color', 'Colour'), new CensusColumnRelationToHeadEnglish($this, 'Relation', 'Relationship to Head of Family'), new CensusColumnConditionCanada($this, 'S/M/W/D', 'Single, married, widowed or divorced'), new CensusColumnBirthMonthDay($this, 'M/D', 'Month and date of birth'), new CensusColumnBirthYear($this, 'Year', 'Year of birth'), new CensusColumnAge($this, 'Age', 'Age at last birthday'), new CensusColumnBirthPlaceSimple($this, 'Birth Loc', 'Country or Place of Birth, plus Rural or Urban'), new CensusColumnNull($this, 'Origin', 'Racial or Tribal origin'), new CensusColumnNationality($this, 'Nationality', 'Nationality'), new CensusColumnNull($this, 'Religion', 'Religion'), new CensusColumnOccupation($this, 'Occupation', 'Profession, Occupation or Trade'), new CensusColumnNull($this, 'Retired', 'Living on own means'), new CensusColumnNull($this, 'Employer', 'Employer'), new CensusColumnNull($this, 'Employee', 'Employee'), new CensusColumnNull($this, 'Work on own', 'Working on own account'), new CensusColumnNull($this, 'Trade', 'Working at trade in factory or home'), new CensusColumnNull($this, 'Ms Fac', 'Months employed at trade in factory'), new CensusColumnNull($this, 'Ms Home', 'Months employed at trade in home'), new CensusColumnNull($this, 'Ms Other', 'Months employed in other than trade in factory or home'), new CensusColumnNull($this, 'Earnings', 'Earnings from occupation or trade $'), new CensusColumnNull($this, 'Extra Earn', 'Extra earnings (from other than occupation or trade) $'), new CensusColumnNull($this, 'Edu Month', 'Months at school in year'), new CensusColumnNull($this, 'Read', 'Can Read'), new CensusColumnNull($this, 'Write', 'Can Write'), new CensusColumnNull($this, 'English', 'Speaks English'), new CensusColumnNull($this, 'French', 'Speaks French'), new CensusColumnNull($this, 'Mother toungue', 'Mother toungue'), new CensusColumnNull($this, 'Infirmities', 'Infirmities - a. Deaf and dumb, b. Blind, c. Unsound mind'), ]; } }