100225b98SGreg Roach<?php 200225b98SGreg Roach/** 300225b98SGreg Roach * webtrees: online genealogy 41062a142SGreg Roach * Copyright (C) 2018 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 */ 16*e7f56f2aSGreg Roachdeclare(strict_types=1); 1715d603e7SGreg Roach 1800225b98SGreg Roachnamespace Fisharebest\Webtrees\Census; 1900225b98SGreg Roach 2000225b98SGreg Roach/** 2100225b98SGreg Roach * Marital status. 2200225b98SGreg Roach */ 23c1010edaSGreg Roachclass CensusColumnConditionFrenchFemme extends AbstractCensusColumnCondition 24c1010edaSGreg Roach{ 25cfe766afSGreg Roach /** @var string Text to display for married males */ 2600225b98SGreg Roach protected $husband = ''; 27cfe766afSGreg Roach 28cfe766afSGreg Roach /** @var string Text to display for married females */ 29d8e2dd8bSGreg Roach protected $wife = '1'; 3000225b98SGreg Roach 31cfe766afSGreg Roach /** @var string Text to display for unmarried males */ 3200225b98SGreg Roach protected $bachelor = ''; 33cfe766afSGreg Roach 34cfe766afSGreg Roach /** @var string Text to display for unmarried females */ 35d8e2dd8bSGreg Roach protected $spinster = ''; 3600225b98SGreg Roach 37cfe766afSGreg Roach /** @var string Text to display for male children */ 3800225b98SGreg Roach protected $boy = ''; 39cfe766afSGreg Roach 40cfe766afSGreg Roach /** @var string Text to display for female children */ 4100225b98SGreg Roach protected $girl = ''; 4200225b98SGreg Roach 43cfe766afSGreg Roach /** @var string Text to display for divorced males */ 4400225b98SGreg Roach protected $divorce = ''; 45cfe766afSGreg Roach 46cfe766afSGreg Roach /** @var string Text to display for divorced females */ 47d8e2dd8bSGreg Roach protected $divorcee = '1'; 4800225b98SGreg Roach 49cfe766afSGreg Roach /** @var string Text to display for widowed males */ 5000225b98SGreg Roach protected $widower = ''; 51cfe766afSGreg Roach 52cfe766afSGreg Roach /** @var string Text to display for widowed females */ 5300225b98SGreg Roach protected $widow = ''; 5400225b98SGreg Roach} 55