xref: /webtrees/app/Census/CensusColumnInterface.php (revision 8fcd0d32e56ee262912bbdb593202cfd1cbc1615)
14ccf2a72SGreg Roach<?php
24ccf2a72SGreg Roach/**
34ccf2a72SGreg Roach * webtrees: online genealogy
4*8fcd0d32SGreg Roach * Copyright (C) 2019 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 */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
1715d603e7SGreg Roach
184ccf2a72SGreg Roachnamespace Fisharebest\Webtrees\Census;
194ccf2a72SGreg Roach
20ef21b467SGreg Roachuse Fisharebest\Webtrees\Date;
21db7d25eeSGreg Roachuse Fisharebest\Webtrees\Individual;
22db7d25eeSGreg Roach
234ccf2a72SGreg Roach/**
244ccf2a72SGreg Roach * Definitions for a census column
254ccf2a72SGreg Roach */
26c1010edaSGreg Roachinterface CensusColumnInterface
27c1010edaSGreg Roach{
284ccf2a72SGreg Roach    /**
29ef21b467SGreg Roach     * A short version of the column's name.
30ef21b467SGreg Roach     *
31ef21b467SGreg Roach     * @return string
32ef21b467SGreg Roach     */
338f53f488SRico Sonntag    public function abbreviation(): string;
34ef21b467SGreg Roach
35ef21b467SGreg Roach    /**
36ef21b467SGreg Roach     * When did this census occur
37ef21b467SGreg Roach     *
38ef21b467SGreg Roach     * @return Date
39ef21b467SGreg Roach     */
408f53f488SRico Sonntag    public function date(): Date;
41ef21b467SGreg Roach
42ef21b467SGreg Roach    /**
434ccf2a72SGreg Roach     * Generate the likely value of this census column, based on available information.
444ccf2a72SGreg Roach     *
45db7d25eeSGreg Roach     * @param Individual $individual
4615d603e7SGreg Roach     * @param Individual $head
47db7d25eeSGreg Roach     *
484ccf2a72SGreg Roach     * @return string
494ccf2a72SGreg Roach     */
508f53f488SRico Sonntag    public function generate(Individual $individual, Individual $head): string;
51ef21b467SGreg Roach
52ef21b467SGreg Roach    /**
53ef21b467SGreg Roach     * Where did this census occur
54ef21b467SGreg Roach     *
55ef21b467SGreg Roach     * @return string
56ef21b467SGreg Roach     */
578f53f488SRico Sonntag    public function place(): string;
58ef21b467SGreg Roach
59ef21b467SGreg Roach    /**
60ef21b467SGreg Roach     * The full version of the column's name.
61ef21b467SGreg Roach     *
62ef21b467SGreg Roach     * @return string
63ef21b467SGreg Roach     */
648f53f488SRico Sonntag    public function title(): string;
654ccf2a72SGreg Roach}
66