1ae0043b7SGreg Roach<?php 2ae0043b7SGreg Roach 3ae0043b7SGreg Roach/** 4ae0043b7SGreg Roach * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6ae0043b7SGreg Roach * This program is free software: you can redistribute it and/or modify 7ae0043b7SGreg Roach * it under the terms of the GNU General Public License as published by 8ae0043b7SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9ae0043b7SGreg Roach * (at your option) any later version. 10ae0043b7SGreg Roach * This program is distributed in the hope that it will be useful, 11ae0043b7SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12ae0043b7SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13ae0043b7SGreg Roach * GNU General Public License for more details. 14ae0043b7SGreg Roach * You should have received a copy of the GNU General Public License 15ae0043b7SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16ae0043b7SGreg Roach */ 17ae0043b7SGreg Roach 18ae0043b7SGreg Roachdeclare(strict_types=1); 19ae0043b7SGreg Roach 20ae0043b7SGreg Roachnamespace Fisharebest\Webtrees\Elements; 21ae0043b7SGreg Roach 22ae0043b7SGreg Roachuse Fisharebest\Webtrees\I18N; 23ae0043b7SGreg Roach 24ae0043b7SGreg Roachuse function strtoupper; 25ae0043b7SGreg Roach 26ae0043b7SGreg Roach/** 27ae0043b7SGreg Roach * <TYPE_OF_DEMOGRAPHICAL_DATA>:= {Size=1:35} 28ae0043b7SGreg Roach * Type the demographic data for a place. 29ae0043b7SGreg Roach * [ HSHO | CITI ] means: household | resident 30ae0043b7SGreg Roach */ 31ae0043b7SGreg Roachclass DemographicDataType extends AbstractElement 32ae0043b7SGreg Roach{ 33ae0043b7SGreg Roach /** 34ae0043b7SGreg Roach * Convert a value to a canonical form. 35ae0043b7SGreg Roach * 36ae0043b7SGreg Roach * @param string $value 37ae0043b7SGreg Roach * 38ae0043b7SGreg Roach * @return string 39ae0043b7SGreg Roach */ 40ae0043b7SGreg Roach public function canonical(string $value): string 41ae0043b7SGreg Roach { 42ae0043b7SGreg Roach return strtoupper(parent::canonical($value)); 43ae0043b7SGreg Roach } 44ae0043b7SGreg Roach 45ae0043b7SGreg Roach /** 46ae0043b7SGreg Roach * A list of controlled values for this element 47ae0043b7SGreg Roach * 48ae0043b7SGreg Roach * @return array<int|string,string> 49ae0043b7SGreg Roach */ 50ae0043b7SGreg Roach public function values(): array 51ae0043b7SGreg Roach { 52ae0043b7SGreg Roach $values = [ 53ae0043b7SGreg Roach '' => '', 54b049d7caSGreg Roach 'HSHO' => /* I18N: Type of demographic data */ I18N::translate('household'), 55b049d7caSGreg Roach 'CITI' => /* I18N: Type of demographic data */ I18N::translate('citizen'), 56ae0043b7SGreg Roach ]; 57ae0043b7SGreg Roach 5837646143SGreg Roach uasort($values, I18N::comparator()); 59ae0043b7SGreg Roach 60ae0043b7SGreg Roach return $values; 61ae0043b7SGreg Roach } 62ae0043b7SGreg Roach} 63