xref: /webtrees/app/Census/CensusColumnConditionFrenchHomme.php (revision 918e47c5f5c18a60bb8c20bb9e6ef2c2e310fdfc)
100225b98SGreg Roach<?php
200225b98SGreg Roach/**
300225b98SGreg Roach * webtrees: online genealogy
48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
500225b98SGreg Roach * This program is free software: you can redistribute it and/or modify
600225b98SGreg Roach * it under the terms of the GNU General Public License as published by
700225b98SGreg Roach * the Free Software Foundation, either version 3 of the License, or
800225b98SGreg Roach * (at your option) any later version.
900225b98SGreg Roach * This program is distributed in the hope that it will be useful,
1000225b98SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1100225b98SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1200225b98SGreg Roach * GNU General Public License for more details.
1300225b98SGreg Roach * You should have received a copy of the GNU General Public License
1400225b98SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
1500225b98SGreg Roach */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
1715d603e7SGreg Roach
1800225b98SGreg Roachnamespace Fisharebest\Webtrees\Census;
1900225b98SGreg Roach
2000225b98SGreg Roach/**
2100225b98SGreg Roach * Marital status.
2200225b98SGreg Roach */
23c1010edaSGreg Roachclass CensusColumnConditionFrenchHomme extends AbstractCensusColumnCondition
24c1010edaSGreg Roach{
25*918e47c5SGreg Roach    // Text to display for married males
26*918e47c5SGreg Roach    protected const HUSBAND = '1';
27cfe766afSGreg Roach
28*918e47c5SGreg Roach    // Text to display for married females
29*918e47c5SGreg Roach    protected const WIFE = '';
3000225b98SGreg Roach
31*918e47c5SGreg Roach    // Text to display for married unmarried males
32*918e47c5SGreg Roach    protected const BACHELOR = '';
33cfe766afSGreg Roach
34*918e47c5SGreg Roach    // Text to display for married unmarried females
35*918e47c5SGreg Roach    protected const SPINSTER = '';
3600225b98SGreg Roach
37*918e47c5SGreg Roach    // Text to display for male children
38*918e47c5SGreg Roach    protected const BOY = '';
39cfe766afSGreg Roach
40*918e47c5SGreg Roach    // Text to display for female children
41*918e47c5SGreg Roach    protected const GIRL = '';
4200225b98SGreg Roach
43*918e47c5SGreg Roach    // Text to display for divorced males
44*918e47c5SGreg Roach    protected const DIVORCE = '1';
45cfe766afSGreg Roach
46*918e47c5SGreg Roach    // Text to display for divorced females
47*918e47c5SGreg Roach    protected const DIVORCEE = '';
4800225b98SGreg Roach
49*918e47c5SGreg Roach    // Text to display for widowed males
50*918e47c5SGreg Roach    protected const WIDOWER = '';
51cfe766afSGreg Roach
52*918e47c5SGreg Roach    // Text to display for widowed females
53*918e47c5SGreg Roach    protected const WIDOW = '';
5400225b98SGreg Roach}
55