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 */ 1615d603e7SGreg Roach 1700225b98SGreg Roachnamespace Fisharebest\Webtrees\Census; 1800225b98SGreg Roach 1900225b98SGreg Roach/** 2000225b98SGreg Roach * Marital status. 2100225b98SGreg Roach */ 22c1010edaSGreg Roachclass CensusColumnConditionFrenchHomme extends AbstractCensusColumnCondition 23c1010edaSGreg Roach{ 24*cfe766afSGreg Roach /** @var string Text to display for married males */ 25d8e2dd8bSGreg Roach protected $husband = '1'; 26*cfe766afSGreg Roach 27*cfe766afSGreg Roach /** @var string Text to display for married females */ 2800225b98SGreg Roach protected $wife = ''; 2900225b98SGreg Roach 30*cfe766afSGreg Roach /** @var string Text to display for unmarried males */ 31d8e2dd8bSGreg Roach protected $bachelor = ''; 32*cfe766afSGreg Roach 33*cfe766afSGreg Roach /** @var string Text to display for unmarried females */ 3400225b98SGreg Roach protected $spinster = ''; 3500225b98SGreg Roach 36*cfe766afSGreg Roach /** @var string Text to display for male children */ 3700225b98SGreg Roach protected $boy = ''; 38*cfe766afSGreg Roach 39*cfe766afSGreg Roach /** @var string Text to display for female children */ 4000225b98SGreg Roach protected $girl = ''; 4100225b98SGreg Roach 42*cfe766afSGreg Roach /** @var string Text to display for divorced males */ 43d8e2dd8bSGreg Roach protected $divorce = '1'; 44*cfe766afSGreg Roach 45*cfe766afSGreg Roach /** @var string Text to display for divorced females */ 4600225b98SGreg Roach protected $divorcee = ''; 4700225b98SGreg Roach 48*cfe766afSGreg Roach /** @var string Text to display for widowed males */ 4900225b98SGreg Roach protected $widower = ''; 50*cfe766afSGreg Roach 51*cfe766afSGreg Roach /** @var string Text to display for widowed females */ 5200225b98SGreg Roach protected $widow = ''; 5300225b98SGreg Roach} 54