xref: /webtrees/app/Census/CensusColumnInterface.php (revision 15d603e7c7c15d20f055d3d9c38d6b133453c5be)
14ccf2a72SGreg Roach<?php
24ccf2a72SGreg Roach/**
34ccf2a72SGreg Roach * webtrees: online genealogy
46bdf7674SGreg Roach * Copyright (C) 2017 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 */
16*15d603e7SGreg 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 */
254ccf2a72SGreg Roachinterface CensusColumnInterface {
264ccf2a72SGreg Roach	/**
27ef21b467SGreg Roach	 * A short version of the column's name.
28ef21b467SGreg Roach	 *
29ef21b467SGreg Roach	 * @return string
30ef21b467SGreg Roach	 */
31ef21b467SGreg Roach	public function abbreviation();
32ef21b467SGreg Roach
33ef21b467SGreg Roach	/**
34ef21b467SGreg Roach	 * When did this census occur
35ef21b467SGreg Roach	 *
36ef21b467SGreg Roach	 * @return Date
37ef21b467SGreg Roach	 */
38ef21b467SGreg Roach	public function date();
39ef21b467SGreg Roach
40ef21b467SGreg Roach	/**
414ccf2a72SGreg Roach	 * Generate the likely value of this census column, based on available information.
424ccf2a72SGreg Roach	 *
43db7d25eeSGreg Roach	 * @param Individual $individual
44*15d603e7SGreg Roach	 * @param Individual $head
45db7d25eeSGreg Roach	 *
464ccf2a72SGreg Roach	 * @return string
474ccf2a72SGreg Roach	 */
48ad51e0bbSGreg Roach	public function generate(Individual $individual, Individual $head = null);
49ef21b467SGreg Roach
50ef21b467SGreg Roach	/**
51ef21b467SGreg Roach	 * Where did this census occur
52ef21b467SGreg Roach	 *
53ef21b467SGreg Roach	 * @return string
54ef21b467SGreg Roach	 */
55ef21b467SGreg Roach	public function place();
56ef21b467SGreg Roach
57ef21b467SGreg Roach	/**
58ef21b467SGreg Roach	 * The full version of the column's name.
59ef21b467SGreg Roach	 *
60ef21b467SGreg Roach	 * @return string
61ef21b467SGreg Roach	 */
62ef21b467SGreg Roach	public function title();
634ccf2a72SGreg Roach}
64