166d72acfSmikejpr<?php 23976b470SGreg Roach 366d72acfSmikejpr/** 466d72acfSmikejpr * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 666d72acfSmikejpr * This program is free software: you can redistribute it and/or modify 766d72acfSmikejpr * it under the terms of the GNU General Public License as published by 866d72acfSmikejpr * the Free Software Foundation, either version 3 of the License, or 966d72acfSmikejpr * (at your option) any later version. 1066d72acfSmikejpr * This program is distributed in the hope that it will be useful, 1166d72acfSmikejpr * but WITHOUT ANY WARRANTY; without even the implied warranty of 1266d72acfSmikejpr * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1366d72acfSmikejpr * GNU General Public License for more details. 1466d72acfSmikejpr * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 1666d72acfSmikejpr */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 1915d603e7SGreg Roach 2066d72acfSmikejprnamespace Fisharebest\Webtrees\Census; 2166d72acfSmikejpr 2266d72acfSmikejpr/** 2366d72acfSmikejpr * Definitions for a census 2466d72acfSmikejpr */ 25c1010edaSGreg Roachclass CensusOfFrance1921 extends CensusOfFrance implements CensusInterface 26c1010edaSGreg Roach{ 2766d72acfSmikejpr /** 2866d72acfSmikejpr * When did this census occur. 2966d72acfSmikejpr * 3066d72acfSmikejpr * @return string 3166d72acfSmikejpr */ 328f53f488SRico Sonntag public function censusDate(): string 33c1010edaSGreg Roach { 3473c569abSGreg Roach return '20 JAN 1921'; 3566d72acfSmikejpr } 3666d72acfSmikejpr 3766d72acfSmikejpr /** 3866d72acfSmikejpr * The columns of the census. 3966d72acfSmikejpr * 4009482a55SGreg Roach * @return array<CensusColumnInterface> 4166d72acfSmikejpr */ 428f53f488SRico Sonntag public function columns(): array 43c1010edaSGreg Roach { 4413abd6f3SGreg Roach return [ 4500225b98SGreg Roach new CensusColumnSurname($this, 'Noms', 'Noms de famille'), 4600225b98SGreg Roach new CensusColumnGivenNames($this, 'Prénoms', ''), 4766d72acfSmikejpr new CensusColumnBirthYear($this, 'Année', 'Année de naissance'), 4800225b98SGreg Roach new CensusColumnBirthPlace($this, 'Lieu', 'Lieu de naissance'), 4900225b98SGreg Roach new CensusColumnNationality($this, 'Nationalité', ''), 5000225b98SGreg Roach new CensusColumnRelationToHead($this, 'Situation', 'Situation par rapport au chef de ménage'), 5100225b98SGreg Roach new CensusColumnOccupation($this, 'Profession', ''), 5200225b98SGreg Roach new CensusColumnNull($this, 'Empl', ''), 5313abd6f3SGreg Roach ]; 5466d72acfSmikejpr } 5566d72acfSmikejpr} 56