xref: /webtrees/app/Census/CensusColumnInterface.php (revision ef21b467575956631eb5374fe4f2bfb94e69aaa9)
14ccf2a72SGreg Roach<?php
24ccf2a72SGreg Roach/**
34ccf2a72SGreg Roach * webtrees: online genealogy
44ccf2a72SGreg Roach * Copyright (C) 2015 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 */
164ccf2a72SGreg Roachnamespace Fisharebest\Webtrees\Census;
174ccf2a72SGreg Roach
18*ef21b467SGreg Roachuse Fisharebest\Webtrees\Date;
19db7d25eeSGreg Roachuse Fisharebest\Webtrees\Individual;
20db7d25eeSGreg Roach
214ccf2a72SGreg Roach/**
224ccf2a72SGreg Roach * Definitions for a census column
234ccf2a72SGreg Roach */
244ccf2a72SGreg Roachinterface CensusColumnInterface {
254ccf2a72SGreg Roach	/**
26*ef21b467SGreg Roach	 * A short version of the column's name.
27*ef21b467SGreg Roach	 *
28*ef21b467SGreg Roach	 * @return string
29*ef21b467SGreg Roach	 */
30*ef21b467SGreg Roach	public function abbreviation();
31*ef21b467SGreg Roach
32*ef21b467SGreg Roach	/**
33*ef21b467SGreg Roach	 * When did this census occur
34*ef21b467SGreg Roach	 *
35*ef21b467SGreg Roach	 * @return Date
36*ef21b467SGreg Roach	 */
37*ef21b467SGreg Roach	public function date();
38*ef21b467SGreg Roach
39*ef21b467SGreg Roach	/**
404ccf2a72SGreg Roach	 * Generate the likely value of this census column, based on available information.
414ccf2a72SGreg Roach	 *
42db7d25eeSGreg Roach	 * @param Individual $individual
43db7d25eeSGreg Roach	 *
444ccf2a72SGreg Roach	 * @return string
454ccf2a72SGreg Roach	 */
46db7d25eeSGreg Roach	public function generate(Individual $individual);
47*ef21b467SGreg Roach
48*ef21b467SGreg Roach	/**
49*ef21b467SGreg Roach	 * Where did this census occur
50*ef21b467SGreg Roach	 *
51*ef21b467SGreg Roach	 * @return string
52*ef21b467SGreg Roach	 */
53*ef21b467SGreg Roach	public function place();
54*ef21b467SGreg Roach
55*ef21b467SGreg Roach	/**
56*ef21b467SGreg Roach	 * The full version of the column's name.
57*ef21b467SGreg Roach	 *
58*ef21b467SGreg Roach	 * @return string
59*ef21b467SGreg Roach	 */
60*ef21b467SGreg Roach	public function title();
614ccf2a72SGreg Roach}
62