xref: /webtrees/app/Census/CensusColumnConditionCanadaWidowedFemale.php (revision da3cb887318b253ac0a743309ac1b537880d6ba2)
1*da3cb887Sglarwill<?php
2*da3cb887Sglarwill
3*da3cb887Sglarwill/**
4*da3cb887Sglarwill * webtrees: online genealogy
5*da3cb887Sglarwill * Copyright (C) 2021 webtrees development team
6*da3cb887Sglarwill * This program is free software: you can redistribute it and/or modify
7*da3cb887Sglarwill * it under the terms of the GNU General Public License as published by
8*da3cb887Sglarwill * the Free Software Foundation, either version 3 of the License, or
9*da3cb887Sglarwill * (at your option) any later version.
10*da3cb887Sglarwill * This program is distributed in the hope that it will be useful,
11*da3cb887Sglarwill * but WITHOUT ANY WARRANTY; without even the implied warranty of
12*da3cb887Sglarwill * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13*da3cb887Sglarwill * GNU General Public License for more details.
14*da3cb887Sglarwill * You should have received a copy of the GNU General Public License
15*da3cb887Sglarwill * along with this program. If not, see <https://www.gnu.org/licenses/>.
16*da3cb887Sglarwill */
17*da3cb887Sglarwill
18*da3cb887Sglarwilldeclare(strict_types=1);
19*da3cb887Sglarwill
20*da3cb887Sglarwillnamespace Fisharebest\Webtrees\Census;
21*da3cb887Sglarwill
22*da3cb887Sglarwill/**
23*da3cb887Sglarwill * Marital status.
24*da3cb887Sglarwill */
25*da3cb887Sglarwillclass CensusColumnConditionCanadaWidowedFemale extends AbstractCensusColumnCondition
26*da3cb887Sglarwill{
27*da3cb887Sglarwill    // Text to display for married males
28*da3cb887Sglarwill    protected const HUSBAND = '';
29*da3cb887Sglarwill
30*da3cb887Sglarwill    // Text to display for married females
31*da3cb887Sglarwill    protected const WIFE = '';
32*da3cb887Sglarwill
33*da3cb887Sglarwill    // Text to display for married unmarried males
34*da3cb887Sglarwill    protected const BACHELOR = '';
35*da3cb887Sglarwill
36*da3cb887Sglarwill    // Text to display for married unmarried females
37*da3cb887Sglarwill    protected const SPINSTER = '';
38*da3cb887Sglarwill
39*da3cb887Sglarwill    // Text to display for male children
40*da3cb887Sglarwill    protected const BOY = '';
41*da3cb887Sglarwill
42*da3cb887Sglarwill    // Text to display for female children
43*da3cb887Sglarwill    protected const GIRL = '';
44*da3cb887Sglarwill
45*da3cb887Sglarwill    // Text to display for divorced individuals
46*da3cb887Sglarwill    protected const DIVORCE = '';
47*da3cb887Sglarwill
48*da3cb887Sglarwill    // Text to display for divorced females
49*da3cb887Sglarwill    protected const DIVORCEE = '';
50*da3cb887Sglarwill
51*da3cb887Sglarwill    // Text to display for widowed males
52*da3cb887Sglarwill    protected const WIDOWER = '';
53*da3cb887Sglarwill
54*da3cb887Sglarwill    // Text to display for widowed females
55*da3cb887Sglarwill    protected const WIDOW = 'W';
56*da3cb887Sglarwill}
57