xref: /webtrees/app/Census/CensusColumnInterface.php (revision 3976b4703df669696105ed6b024b96d433c8fbdb)
14ccf2a72SGreg Roach<?php
2*3976b470SGreg Roach
34ccf2a72SGreg Roach/**
44ccf2a72SGreg Roach * webtrees: online genealogy
58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
64ccf2a72SGreg Roach * This program is free software: you can redistribute it and/or modify
74ccf2a72SGreg Roach * it under the terms of the GNU General Public License as published by
84ccf2a72SGreg Roach * the Free Software Foundation, either version 3 of the License, or
94ccf2a72SGreg Roach * (at your option) any later version.
104ccf2a72SGreg Roach * This program is distributed in the hope that it will be useful,
114ccf2a72SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
124ccf2a72SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
134ccf2a72SGreg Roach * GNU General Public License for more details.
144ccf2a72SGreg Roach * You should have received a copy of the GNU General Public License
154ccf2a72SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
164ccf2a72SGreg Roach */
17e7f56f2aSGreg Roachdeclare(strict_types=1);
1815d603e7SGreg Roach
194ccf2a72SGreg Roachnamespace Fisharebest\Webtrees\Census;
204ccf2a72SGreg Roach
21ef21b467SGreg Roachuse Fisharebest\Webtrees\Date;
22db7d25eeSGreg Roachuse Fisharebest\Webtrees\Individual;
23db7d25eeSGreg Roach
244ccf2a72SGreg Roach/**
254ccf2a72SGreg Roach * Definitions for a census column
264ccf2a72SGreg Roach */
27c1010edaSGreg Roachinterface CensusColumnInterface
28c1010edaSGreg Roach{
294ccf2a72SGreg Roach    /**
30ef21b467SGreg Roach     * A short version of the column's name.
31ef21b467SGreg Roach     *
32ef21b467SGreg Roach     * @return string
33ef21b467SGreg Roach     */
348f53f488SRico Sonntag    public function abbreviation(): string;
35ef21b467SGreg Roach
36ef21b467SGreg Roach    /**
37ef21b467SGreg Roach     * When did this census occur
38ef21b467SGreg Roach     *
39ef21b467SGreg Roach     * @return Date
40ef21b467SGreg Roach     */
418f53f488SRico Sonntag    public function date(): Date;
42ef21b467SGreg Roach
43ef21b467SGreg Roach    /**
444ccf2a72SGreg Roach     * Generate the likely value of this census column, based on available information.
454ccf2a72SGreg Roach     *
46db7d25eeSGreg Roach     * @param Individual $individual
4715d603e7SGreg Roach     * @param Individual $head
48db7d25eeSGreg Roach     *
494ccf2a72SGreg Roach     * @return string
504ccf2a72SGreg Roach     */
518f53f488SRico Sonntag    public function generate(Individual $individual, Individual $head): string;
52ef21b467SGreg Roach
53ef21b467SGreg Roach    /**
54ef21b467SGreg Roach     * Where did this census occur
55ef21b467SGreg Roach     *
56ef21b467SGreg Roach     * @return string
57ef21b467SGreg Roach     */
588f53f488SRico Sonntag    public function place(): string;
59ef21b467SGreg Roach
60ef21b467SGreg Roach    /**
61ef21b467SGreg Roach     * The full version of the column's name.
62ef21b467SGreg Roach     *
63ef21b467SGreg Roach     * @return string
64ef21b467SGreg Roach     */
658f53f488SRico Sonntag    public function title(): string;
664ccf2a72SGreg Roach}
67