xref: /webtrees/app/Census/CensusColumnConditionFrenchVeuf.php (revision e873f434551745f888937263ff89e80db3b0f785)
100225b98SGreg Roach<?php
23976b470SGreg Roach
300225b98SGreg Roach/**
400225b98SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
600225b98SGreg Roach * This program is free software: you can redistribute it and/or modify
700225b98SGreg Roach * it under the terms of the GNU General Public License as published by
800225b98SGreg Roach * the Free Software Foundation, either version 3 of the License, or
900225b98SGreg Roach * (at your option) any later version.
1000225b98SGreg Roach * This program is distributed in the hope that it will be useful,
1100225b98SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1200225b98SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1300225b98SGreg Roach * GNU General Public License for more details.
1400225b98SGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
1600225b98SGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
1915d603e7SGreg Roach
2000225b98SGreg Roachnamespace Fisharebest\Webtrees\Census;
2100225b98SGreg Roach
2200225b98SGreg Roach/**
2300225b98SGreg Roach * Marital status.
2400225b98SGreg Roach */
25c1010edaSGreg Roachclass CensusColumnConditionFrenchVeuf extends AbstractCensusColumnCondition
26c1010edaSGreg Roach{
27918e47c5SGreg Roach    // Text to display for married males
28*e873f434SGreg Roach    protected const string HUSBAND = '';
29cfe766afSGreg Roach
30918e47c5SGreg Roach    // Text to display for married females
31*e873f434SGreg Roach    protected const string WIFE = '';
3200225b98SGreg Roach
33918e47c5SGreg Roach    // Text to display for married unmarried males
34*e873f434SGreg Roach    protected const string BACHELOR = '';
35cfe766afSGreg Roach
36918e47c5SGreg Roach    // Text to display for married unmarried females
37*e873f434SGreg Roach    protected const string SPINSTER = '';
3800225b98SGreg Roach
39918e47c5SGreg Roach    // Text to display for male children
40*e873f434SGreg Roach    protected const string BOY = '';
41cfe766afSGreg Roach
42918e47c5SGreg Roach    // Text to display for female children
43*e873f434SGreg Roach    protected const string GIRL = '';
4400225b98SGreg Roach
45918e47c5SGreg Roach    // Text to display for divorced males
46*e873f434SGreg Roach    protected const string DIVORCE = '';
47cfe766afSGreg Roach
48918e47c5SGreg Roach    // Text to display for divorced females
49*e873f434SGreg Roach    protected const string DIVORCEE = '';
5000225b98SGreg Roach
51918e47c5SGreg Roach    // Text to display for widowed males
52*e873f434SGreg Roach    protected const string WIDOWER = '1';
53cfe766afSGreg Roach
54918e47c5SGreg Roach    // Text to display for widowed females
55*e873f434SGreg Roach    protected const string WIDOW = '';
5600225b98SGreg Roach}
57