xref: /webtrees/app/Census/CensusColumnConditionCanadaMarriedWidowed.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 * Marital status.
24da3cb887Sglarwill */
25da3cb887Sglarwillclass CensusColumnConditionCanadaMarriedWidowed extends AbstractCensusColumnCondition
26da3cb887Sglarwill{
27da3cb887Sglarwill    // Text to display for married males
28da3cb887Sglarwill    protected const HUSBAND = 'M';
29da3cb887Sglarwill
30da3cb887Sglarwill    // Text to display for married females
31da3cb887Sglarwill    protected const WIFE = 'M';
32da3cb887Sglarwill
33da3cb887Sglarwill    // Text to display for married unmarried males
34da3cb887Sglarwill    protected const BACHELOR = '';
35da3cb887Sglarwill
36da3cb887Sglarwill    // Text to display for married unmarried females
37da3cb887Sglarwill    protected const SPINSTER = '';
38da3cb887Sglarwill
39da3cb887Sglarwill    // Text to display for male children
40da3cb887Sglarwill    protected const BOY = '';
41da3cb887Sglarwill
42da3cb887Sglarwill    // Text to display for female children
43da3cb887Sglarwill    protected const GIRL = '';
44da3cb887Sglarwill
45da3cb887Sglarwill    // Text to display for divorced individuals
46da3cb887Sglarwill    protected const DIVORCE = '';
47da3cb887Sglarwill
48da3cb887Sglarwill    // Text to display for divorced females
49da3cb887Sglarwill    protected const DIVORCEE = '';
50da3cb887Sglarwill
51da3cb887Sglarwill    // Text to display for widowed males
52da3cb887Sglarwill    protected const WIDOWER = 'W';
53da3cb887Sglarwill
54da3cb887Sglarwill    // Text to display for widowed females
55da3cb887Sglarwill    protected const WIDOW = 'W';
56da3cb887Sglarwill}
57