14ccf2a72SGreg Roach<?php 24ccf2a72SGreg Roach/** 34ccf2a72SGreg Roach * webtrees: online genealogy 41062a142SGreg Roach * Copyright (C) 2018 webtrees development team 54ccf2a72SGreg Roach * This program is free software: you can redistribute it and/or modify 64ccf2a72SGreg Roach * it under the terms of the GNU General Public License as published by 74ccf2a72SGreg Roach * the Free Software Foundation, either version 3 of the License, or 84ccf2a72SGreg Roach * (at your option) any later version. 94ccf2a72SGreg Roach * This program is distributed in the hope that it will be useful, 104ccf2a72SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 114ccf2a72SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 124ccf2a72SGreg Roach * GNU General Public License for more details. 134ccf2a72SGreg Roach * You should have received a copy of the GNU General Public License 144ccf2a72SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 154ccf2a72SGreg Roach */ 1615d603e7SGreg Roach 174ccf2a72SGreg Roachnamespace Fisharebest\Webtrees\Census; 184ccf2a72SGreg Roach 19ef21b467SGreg Roachuse Fisharebest\Webtrees\Date; 20db7d25eeSGreg Roachuse Fisharebest\Webtrees\Individual; 21db7d25eeSGreg Roach 224ccf2a72SGreg Roach/** 234ccf2a72SGreg Roach * Definitions for a census column 244ccf2a72SGreg Roach */ 25*c1010edaSGreg Roachinterface CensusColumnInterface 26*c1010edaSGreg Roach{ 274ccf2a72SGreg Roach /** 28ef21b467SGreg Roach * A short version of the column's name. 29ef21b467SGreg Roach * 30ef21b467SGreg Roach * @return string 31ef21b467SGreg Roach */ 32ef21b467SGreg Roach public function abbreviation(); 33ef21b467SGreg Roach 34ef21b467SGreg Roach /** 35ef21b467SGreg Roach * When did this census occur 36ef21b467SGreg Roach * 37ef21b467SGreg Roach * @return Date 38ef21b467SGreg Roach */ 39ef21b467SGreg Roach public function date(); 40ef21b467SGreg Roach 41ef21b467SGreg Roach /** 424ccf2a72SGreg Roach * Generate the likely value of this census column, based on available information. 434ccf2a72SGreg Roach * 44db7d25eeSGreg Roach * @param Individual $individual 4515d603e7SGreg Roach * @param Individual $head 46db7d25eeSGreg Roach * 474ccf2a72SGreg Roach * @return string 484ccf2a72SGreg Roach */ 49ad51e0bbSGreg Roach public function generate(Individual $individual, Individual $head = null); 50ef21b467SGreg Roach 51ef21b467SGreg Roach /** 52ef21b467SGreg Roach * Where did this census occur 53ef21b467SGreg Roach * 54ef21b467SGreg Roach * @return string 55ef21b467SGreg Roach */ 56ef21b467SGreg Roach public function place(); 57ef21b467SGreg Roach 58ef21b467SGreg Roach /** 59ef21b467SGreg Roach * The full version of the column's name. 60ef21b467SGreg Roach * 61ef21b467SGreg Roach * @return string 62ef21b467SGreg Roach */ 63ef21b467SGreg Roach public function title(); 644ccf2a72SGreg Roach} 65