xref: /webtrees/app/Census/CensusColumnConditionFrenchFille.php (revision e7f56f2af615447ab1a7646851f88b465ace9e04)
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 CensusColumnConditionFrenchFille 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 */
2900225b98SGreg Roach    protected $wife    = '';
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 = '1';
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 */
41d8e2dd8bSGreg Roach    protected $girl = '1';
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 */
4700225b98SGreg Roach    protected $divorcee = '';
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