xref: /webtrees/app/Census/CensusColumnConditionFrenchFille.php (revision 00225b9840cb4ba8a23967e3fb8fab881d3d63d5)
1*00225b98SGreg Roach<?php
2*00225b98SGreg Roach/**
3*00225b98SGreg Roach * webtrees: online genealogy
4*00225b98SGreg Roach * Copyright (C) 2016 webtrees development team
5*00225b98SGreg Roach * This program is free software: you can redistribute it and/or modify
6*00225b98SGreg Roach * it under the terms of the GNU General Public License as published by
7*00225b98SGreg Roach * the Free Software Foundation, either version 3 of the License, or
8*00225b98SGreg Roach * (at your option) any later version.
9*00225b98SGreg Roach * This program is distributed in the hope that it will be useful,
10*00225b98SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
11*00225b98SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12*00225b98SGreg Roach * GNU General Public License for more details.
13*00225b98SGreg Roach * You should have received a copy of the GNU General Public License
14*00225b98SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
15*00225b98SGreg Roach */
16*00225b98SGreg Roachnamespace Fisharebest\Webtrees\Census;
17*00225b98SGreg Roach
18*00225b98SGreg Roach/**
19*00225b98SGreg Roach * Marital status.
20*00225b98SGreg Roach */
21*00225b98SGreg Roachclass CensusColumnConditionFrenchFille extends AbstractCensusColumnCondition {
22*00225b98SGreg Roach	/* Text to display for married individuals */
23*00225b98SGreg Roach	protected $husband = '';
24*00225b98SGreg Roach	protected $wife    = '';
25*00225b98SGreg Roach
26*00225b98SGreg Roach	/* Text to display for unmarried individuals */
27*00225b98SGreg Roach	protected $bachelor = '';
28*00225b98SGreg Roach	protected $spinster = '';
29*00225b98SGreg Roach
30*00225b98SGreg Roach	/* Text to display for children */
31*00225b98SGreg Roach	protected $boy  = '';
32*00225b98SGreg Roach	protected $girl = 'X';
33*00225b98SGreg Roach
34*00225b98SGreg Roach	/* Text to display for divorced individuals */
35*00225b98SGreg Roach	protected $divorce  = '';
36*00225b98SGreg Roach	protected $divorcee = '';
37*00225b98SGreg Roach
38*00225b98SGreg Roach	/* Text to display for widowed individuals (not yet implemented) */
39*00225b98SGreg Roach	protected $widower = '';
40*00225b98SGreg Roach	protected $widow   = '';
41*00225b98SGreg Roach}
42