xref: /webtrees/app/Census/CensusOfDenmark1885.php (revision 3976b4703df669696105ed6b024b96d433c8fbdb)
1101af0b4SGreg Roach<?php
2*3976b470SGreg Roach
3101af0b4SGreg Roach/**
4101af0b4SGreg Roach * webtrees: online genealogy
58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
6101af0b4SGreg Roach * This program is free software: you can redistribute it and/or modify
7101af0b4SGreg Roach * it under the terms of the GNU General Public License as published by
8101af0b4SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9101af0b4SGreg Roach * (at your option) any later version.
10101af0b4SGreg Roach * This program is distributed in the hope that it will be useful,
11101af0b4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12101af0b4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13101af0b4SGreg Roach * GNU General Public License for more details.
14101af0b4SGreg Roach * You should have received a copy of the GNU General Public License
15101af0b4SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16101af0b4SGreg Roach */
17e7f56f2aSGreg Roachdeclare(strict_types=1);
1815d603e7SGreg Roach
19101af0b4SGreg Roachnamespace Fisharebest\Webtrees\Census;
20101af0b4SGreg Roach
21101af0b4SGreg Roach/**
22101af0b4SGreg Roach * Definitions for a census
23101af0b4SGreg Roach */
24c1010edaSGreg Roachclass CensusOfDenmark1885 extends CensusOfDenmark implements CensusInterface
25c1010edaSGreg Roach{
26101af0b4SGreg Roach    /**
27101af0b4SGreg Roach     * When did this census occur.
28101af0b4SGreg Roach     *
29101af0b4SGreg Roach     * @return string
30101af0b4SGreg Roach     */
318f53f488SRico Sonntag    public function censusDate(): string
32c1010edaSGreg Roach    {
33101af0b4SGreg Roach        return '01 FEB 1885';
34101af0b4SGreg Roach    }
35101af0b4SGreg Roach
36101af0b4SGreg Roach    /**
37101af0b4SGreg Roach     * Where did this census occur, in GEDCOM format.
38101af0b4SGreg Roach     *
39101af0b4SGreg Roach     * @return string
40101af0b4SGreg Roach     */
418f53f488SRico Sonntag    public function censusPlace(): string
42c1010edaSGreg Roach    {
43101af0b4SGreg Roach        return 'København, Danmark';
44101af0b4SGreg Roach    }
45101af0b4SGreg Roach
46101af0b4SGreg Roach    /**
47101af0b4SGreg Roach     * The columns of the census.
48101af0b4SGreg Roach     *
49101af0b4SGreg Roach     * @return CensusColumnInterface[]
50101af0b4SGreg Roach     */
518f53f488SRico Sonntag    public function columns(): array
52c1010edaSGreg Roach    {
5313abd6f3SGreg Roach        return [
544c219c47SGreg Roach            new CensusColumnFullName($this, 'Navn', ''),
554c219c47SGreg Roach            new CensusColumnSexMK($this, 'Køn', ''),
564c219c47SGreg Roach            new CensusColumnAge($this, 'Alder', ''),
574c219c47SGreg Roach            new CensusColumnConditionDanish($this, 'Civilstand', ''),
584c219c47SGreg Roach            new CensusColumnReligion($this, 'Religion', ''),
594c219c47SGreg Roach            new CensusColumnOccupation($this, 'Erhverv', ''),
604c219c47SGreg Roach            new CensusColumnRelationToHead($this, 'Stilling i familien', ''),
614c219c47SGreg Roach            new CensusColumnNull($this, '', ''),
624c219c47SGreg Roach            new CensusColumnNull($this, '', ''),
634c219c47SGreg Roach            new CensusColumnNull($this, '', ''),
644c219c47SGreg Roach            new CensusColumnNull($this, '', ''),
654c219c47SGreg Roach            new CensusColumnNull($this, '', ''),
664c219c47SGreg Roach            new CensusColumnNull($this, '', ''),
6713abd6f3SGreg Roach        ];
68101af0b4SGreg Roach    }
69101af0b4SGreg Roach}
70