diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-09-25 00:34:06 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-09-25 00:34:06 +0100 |
| commit | 4ccf2a72a960de8375eee0787bc02e7d6dc065eb (patch) | |
| tree | 3dc783d949e182f97c6402dac719cce50eec566c /app/Census/CensusOfUnitedStates1850.php | |
| parent | 8935d8b22a5e5406c862167ae485b4035105851b (diff) | |
| download | webtrees-4ccf2a72a960de8375eee0787bc02e7d6dc065eb.tar.gz webtrees-4ccf2a72a960de8375eee0787bc02e7d6dc065eb.tar.bz2 webtrees-4ccf2a72a960de8375eee0787bc02e7d6dc065eb.zip | |
Start to refactor census assistant
Diffstat (limited to 'app/Census/CensusOfUnitedStates1850.php')
| -rw-r--r-- | app/Census/CensusOfUnitedStates1850.php | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/app/Census/CensusOfUnitedStates1850.php b/app/Census/CensusOfUnitedStates1850.php new file mode 100644 index 0000000000..d1d5018c6b --- /dev/null +++ b/app/Census/CensusOfUnitedStates1850.php @@ -0,0 +1,50 @@ +<?php +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +namespace Fisharebest\Webtrees\Census; + +use Fisharebest\Webtrees\Date; +use Fisharebest\Webtrees\Individual; +use Fisharebest\Webtrees\Place; + +/** + * Definitions for a census + */ +class CensusOfUnitedStates1850 extends CensusOfUnitedStates implements CensusInterface { + /** + * When did this census occur. + * + * @return string + */ + public function censusDate() { + return '01 JUN 1850'; + } + + /** + * The columns of the census. + * + * @param Individual $individual + * + * @return CensusColumnInterface[] + */ + public function columns(Individual $individual) { + $place = new Place($this->censusPlace(), $individual->getTree()); + $date = new Date($this->censusDate()); + + return array( + new CensusColumnFullName($individual, $place, $date), + ); + } +} |
