xref: /webtrees/app/Census/CensusOfCanada1861.php (revision d11be7027e34e3121be11cc025421873364403f9)
1da3cb887Sglarwill<?php
2da3cb887Sglarwill
3da3cb887Sglarwill/**
4da3cb887Sglarwill * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
6da3cb887Sglarwill * This program is free software: you can redistribute it and/or modify
7da3cb887Sglarwill * it under the terms of the GNU General Public License as published by
8da3cb887Sglarwill * the Free Software Foundation, either version 3 of the License, or
9da3cb887Sglarwill * (at your option) any later version.
10da3cb887Sglarwill * This program is distributed in the hope that it will be useful,
11da3cb887Sglarwill * but WITHOUT ANY WARRANTY; without even the implied warranty of
12da3cb887Sglarwill * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13da3cb887Sglarwill * GNU General Public License for more details.
14da3cb887Sglarwill * You should have received a copy of the GNU General Public License
15da3cb887Sglarwill * along with this program. If not, see <https://www.gnu.org/licenses/>.
16da3cb887Sglarwill */
17da3cb887Sglarwill
18da3cb887Sglarwilldeclare(strict_types=1);
19da3cb887Sglarwill
20da3cb887Sglarwillnamespace Fisharebest\Webtrees\Census;
21da3cb887Sglarwill
22da3cb887Sglarwill/**
23da3cb887Sglarwill * Definitions for a census
24da3cb887Sglarwill */
25da3cb887Sglarwillclass CensusOfCanada1861 extends CensusOfCanada implements CensusInterface
26da3cb887Sglarwill{
27da3cb887Sglarwill    /**
28da3cb887Sglarwill     * When did this census occur.
29da3cb887Sglarwill     *
30da3cb887Sglarwill     * @return string
31da3cb887Sglarwill     */
32da3cb887Sglarwill    public function censusDate(): string
33da3cb887Sglarwill    {
34da3cb887Sglarwill        return '14 JAN 1861';
35da3cb887Sglarwill    }
36da3cb887Sglarwill
37da3cb887Sglarwill    /**
38da3cb887Sglarwill     * The columns of the census.
39da3cb887Sglarwill     *
4009482a55SGreg Roach     * @return array<CensusColumnInterface>
41da3cb887Sglarwill     */
42da3cb887Sglarwill    public function columns(): array
43da3cb887Sglarwill    {
44da3cb887Sglarwill        return [
45da3cb887Sglarwill            new CensusColumnFullName($this, 'Name', 'Name of inmates'),
46da3cb887Sglarwill            new CensusColumnOccupation($this, 'Occupation', 'Profession, trade or occupation'),
47da3cb887Sglarwill            new CensusColumnBirthPlaceSimple($this, 'Birth Loc', 'Place of birth. F indicates that the person was born of Canadian parents.'),
48da3cb887Sglarwill            new CensusColumnNull($this, 'Recent Married', 'Married within the last twelve months'),
49da3cb887Sglarwill            new CensusColumnNull($this, 'Religion', 'Religion'),
50da3cb887Sglarwill            new CensusColumnAgeNextBirthDay($this, 'Next BirthDay age', 'Age at NEXT birthday'),
51da3cb887Sglarwill            new CensusColumnSexM($this, 'Sex: male', 'Sex: male'),
52da3cb887Sglarwill            new CensusColumnSexF($this, 'Sex: female', 'Sex: female'),
53da3cb887Sglarwill            new CensusColumnConditionCanadaMarriedSingle($this, 'M/S', 'Married or single'),
54da3cb887Sglarwill            new CensusColumnConditionCanadaWidowedMale($this, 'Widowers', 'Widowers'),
55da3cb887Sglarwill            new CensusColumnConditionCanadaWidowedFemale($this, 'Widows', 'Widows'),
56da3cb887Sglarwill        ];
57da3cb887Sglarwill    }
58da3cb887Sglarwill}
59