100225b98SGreg Roach<?php 2*3976b470SGreg Roach 300225b98SGreg Roach/** 400225b98SGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 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 1500225b98SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 1600225b98SGreg Roach */ 17e7f56f2aSGreg Roachdeclare(strict_types=1); 1815d603e7SGreg Roach 1900225b98SGreg Roachnamespace Fisharebest\Webtrees\Census; 2000225b98SGreg Roach 2100225b98SGreg Roach/** 2200225b98SGreg Roach * Marital status. 2300225b98SGreg Roach */ 24c1010edaSGreg Roachclass CensusColumnConditionFrenchVeuf extends AbstractCensusColumnCondition 25c1010edaSGreg Roach{ 26918e47c5SGreg Roach // Text to display for married males 27918e47c5SGreg Roach protected const HUSBAND = ''; 28cfe766afSGreg Roach 29918e47c5SGreg Roach // Text to display for married females 30918e47c5SGreg Roach protected const WIFE = ''; 3100225b98SGreg Roach 32918e47c5SGreg Roach // Text to display for married unmarried males 33918e47c5SGreg Roach protected const BACHELOR = ''; 34cfe766afSGreg Roach 35918e47c5SGreg Roach // Text to display for married unmarried females 36918e47c5SGreg Roach protected const SPINSTER = ''; 3700225b98SGreg Roach 38918e47c5SGreg Roach // Text to display for male children 39918e47c5SGreg Roach protected const BOY = ''; 40cfe766afSGreg Roach 41918e47c5SGreg Roach // Text to display for female children 42918e47c5SGreg Roach protected const GIRL = ''; 4300225b98SGreg Roach 44918e47c5SGreg Roach // Text to display for divorced males 45918e47c5SGreg Roach protected const DIVORCE = ''; 46cfe766afSGreg Roach 47918e47c5SGreg Roach // Text to display for divorced females 48918e47c5SGreg Roach protected const DIVORCEE = ''; 4900225b98SGreg Roach 50918e47c5SGreg Roach // Text to display for widowed males 51918e47c5SGreg Roach protected const WIDOWER = '1'; 52cfe766afSGreg Roach 53918e47c5SGreg Roach // Text to display for widowed females 54918e47c5SGreg Roach protected const WIDOW = ''; 5500225b98SGreg Roach} 56