xref: /webtrees/app/Census/CensusOfDeutschland1819.php (revision abe3581c1ce850864080bffa6e8ce41ebbdd10d2)
1ce92b752Smpwt<?php
2ce92b752Smpwt/**
3ce92b752Smpwt * webtrees: online genealogy
4*abe3581cSGreg Roach * Copyright (C) 2019 webtrees development team
5ce92b752Smpwt * This program is free software: you can redistribute it and/or modify
6ce92b752Smpwt * it under the terms of the GNU General Public License as published by
7ce92b752Smpwt * the Free Software Foundation, either version 3 of the License, or
8ce92b752Smpwt * (at your option) any later version.
9ce92b752Smpwt * This program is distributed in the hope that it will be useful,
10ce92b752Smpwt * but WITHOUT ANY WARRANTY; without even the implied warranty of
11ce92b752Smpwt * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12ce92b752Smpwt * GNU General Public License for more details.
13ce92b752Smpwt * You should have received a copy of the GNU General Public License
14ce92b752Smpwt * along with this program. If not, see <http://www.gnu.org/licenses/>.
15ce92b752Smpwt */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
1715d603e7SGreg Roach
18ce92b752Smpwtnamespace Fisharebest\Webtrees\Census;
19ce92b752Smpwt
20ce92b752Smpwt/**
21ce92b752Smpwt * Definitions for a census
22ce92b752Smpwt */
23c1010edaSGreg Roachclass CensusOfDeutschland1819 extends CensusOfDeutschland implements CensusInterface
24c1010edaSGreg Roach{
25ce92b752Smpwt    /**
26ce92b752Smpwt     * When did this census occur.
27ce92b752Smpwt     *
28ce92b752Smpwt     * @return string
29ce92b752Smpwt     */
308f53f488SRico Sonntag    public function censusDate(): string
31c1010edaSGreg Roach    {
32ce92b752Smpwt        return 'AUG 1819';
33ce92b752Smpwt    }
34ce92b752Smpwt
35ce92b752Smpwt    /**
36ce92b752Smpwt     * Where did this census occur, in GEDCOM format.
37ce92b752Smpwt     *
38ce92b752Smpwt     * @return string
39ce92b752Smpwt     */
408f53f488SRico Sonntag    public function censusPlace(): string
41c1010edaSGreg Roach    {
42ce92b752Smpwt        return 'Mecklenburg-Schwerin, Deutschland';
43ce92b752Smpwt    }
44ce92b752Smpwt
45ce92b752Smpwt    /**
46ce92b752Smpwt     * The columns of the census.
47ce92b752Smpwt     *
48ce92b752Smpwt     * @return CensusColumnInterface[]
49ce92b752Smpwt     */
508f53f488SRico Sonntag    public function columns(): array
51c1010edaSGreg Roach    {
5213abd6f3SGreg Roach        return [
53ce92b752Smpwt            new CensusColumnNull($this, 'Nr.', 'Laufende Num̅er.'),
54ce92b752Smpwt            new CensusColumnNull($this, 'Geschlecht', 'Ob männlichen oder weiblichen Geschlechts.'),
55ce92b752Smpwt            new CensusColumnFullName($this, 'Name', 'Vor- und Zuname.'),
56ce92b752Smpwt            new CensusColumnBirthYear($this, 'Geburtsdatum', 'Jahr und Tag der Geburt.'),
57ce92b752Smpwt            new CensusColumnBirthPlace($this, 'Geburtsort', 'Geburtsort.'),
58ce92b752Smpwt            new CensusColumnNull($this, 'Kirchspiel', 'Kirchspiel, wohin der Geburtsort gehört.'),
59ce92b752Smpwt            new CensusColumnNull($this, '', 'leere Spalte'),
60ce92b752Smpwt            new CensusColumnOccupation($this, 'Stand/Beruf', 'Stand und Gewerbe.'),
61ce92b752Smpwt            new CensusColumnNull($this, 'Besitz', 'Grundbesitz.'),
62ce92b752Smpwt            new CensusColumnNull($this, 'hier seit', 'Wie lange er schon hier ist.'),
63ce92b752Smpwt            new CensusColumnNull($this, 'Familienstand', 'Ob ledig oder verheirathet.'),
64ce92b752Smpwt            new CensusColumnReligion($this, 'Religion', 'Religion.'),
65ce92b752Smpwt            new CensusColumnNull($this, 'Bemerkungen', 'Allgemeine Bemerkungen.'),
6613abd6f3SGreg Roach        ];
67ce92b752Smpwt    }
68ce92b752Smpwt}
69