100225b98SGreg Roach<?php 23976b470SGreg Roach 300225b98SGreg Roach/** 400225b98SGreg Roach * webtrees: online genealogy 5*d11be702SGreg 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 CensusColumnConditionFrenchGarcon extends AbstractCensusColumnCondition 26c1010edaSGreg Roach{ 27918e47c5SGreg Roach // Text to display for married males 28918e47c5SGreg Roach protected const HUSBAND = ''; 29cfe766afSGreg Roach 30918e47c5SGreg Roach // Text to display for married females 31918e47c5SGreg Roach protected const WIFE = ''; 3200225b98SGreg Roach 33918e47c5SGreg Roach // Text to display for married unmarried males 34918e47c5SGreg Roach protected const BACHELOR = '1'; 35cfe766afSGreg Roach 36918e47c5SGreg Roach // Text to display for married unmarried females 37918e47c5SGreg Roach protected const SPINSTER = ''; 3800225b98SGreg Roach 39918e47c5SGreg Roach // Text to display for male children 40918e47c5SGreg Roach protected const BOY = '1'; 41cfe766afSGreg Roach 42918e47c5SGreg Roach // Text to display for female children 43918e47c5SGreg Roach protected const GIRL = ''; 4400225b98SGreg Roach 45918e47c5SGreg Roach // Text to display for divorced males 46918e47c5SGreg Roach protected const DIVORCE = ''; 47cfe766afSGreg Roach 48918e47c5SGreg Roach // Text to display for divorced females 49918e47c5SGreg Roach protected const DIVORCEE = ''; 5000225b98SGreg Roach 51918e47c5SGreg Roach // Text to display for widowed males 52918e47c5SGreg Roach protected const WIDOWER = ''; 53cfe766afSGreg Roach 54918e47c5SGreg Roach // Text to display for widowed females 55918e47c5SGreg Roach protected const WIDOW = ''; 5600225b98SGreg Roach} 57