xref: /webtrees/app/Census/CensusColumnConditionUs.php (revision 1062a1429914c995339f502856821457aa975a5a)
181d1be7aSGreg Roach<?php
281d1be7aSGreg Roach/**
381d1be7aSGreg Roach * webtrees: online genealogy
4*1062a142SGreg Roach * Copyright (C) 2018 webtrees development team
581d1be7aSGreg Roach * This program is free software: you can redistribute it and/or modify
681d1be7aSGreg Roach * it under the terms of the GNU General Public License as published by
781d1be7aSGreg Roach * the Free Software Foundation, either version 3 of the License, or
881d1be7aSGreg Roach * (at your option) any later version.
981d1be7aSGreg Roach * This program is distributed in the hope that it will be useful,
1081d1be7aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1181d1be7aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1281d1be7aSGreg Roach * GNU General Public License for more details.
1381d1be7aSGreg Roach * You should have received a copy of the GNU General Public License
1481d1be7aSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
1581d1be7aSGreg Roach */
1615d603e7SGreg Roach
1781d1be7aSGreg Roachnamespace Fisharebest\Webtrees\Census;
1881d1be7aSGreg Roach
1981d1be7aSGreg Roach/**
2081d1be7aSGreg Roach * Marital status.
2181d1be7aSGreg Roach */
2235326bd6SGreg Roachclass CensusColumnConditionUs extends CensusColumnConditionEnglish {
2335326bd6SGreg Roach	/* Text to display for married individuals */
2400225b98SGreg Roach	protected $husband = 'M';
2500225b98SGreg Roach	protected $wife    = 'M';
2681d1be7aSGreg Roach
2735326bd6SGreg Roach	/* Text to display for unmarried individuals */
2800225b98SGreg Roach	protected $bachelor = 'S';
2900225b98SGreg Roach	protected $spinster = 'S';
3000225b98SGreg Roach
3100225b98SGreg Roach	/* Text to display for children */
3200225b98SGreg Roach	protected $boy  = 'S';
3300225b98SGreg Roach	protected $girl = 'S';
3435326bd6SGreg Roach
3535326bd6SGreg Roach	/* Text to display for divorced individuals */
3600225b98SGreg Roach	protected $divorce  = 'D';
3700225b98SGreg Roach	protected $divorcee = 'D';
3835326bd6SGreg Roach
392a6fda60SGreg Roach	/* Text to display for widowed individuals */
4000225b98SGreg Roach	protected $widower = 'W';
4100225b98SGreg Roach	protected $widow   = 'W';
4281d1be7aSGreg Roach}
43