diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2021-02-12 19:10:53 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2021-02-14 06:56:27 +0000 |
| commit | ae0043b720d44ad147874b2a3afe4e7a347c314a (patch) | |
| tree | c39fb0d93d25507d4fa702c3a7d964580699f160 /app/Elements/DemographicDataType.php | |
| parent | 4708b347e34e3bf84dc2c74a1f3fac5406b030aa (diff) | |
| download | webtrees-ae0043b720d44ad147874b2a3afe4e7a347c314a.tar.gz webtrees-ae0043b720d44ad147874b2a3afe4e7a347c314a.tar.bz2 webtrees-ae0043b720d44ad147874b2a3afe4e7a347c314a.zip | |
Gedcom elements
Diffstat (limited to 'app/Elements/DemographicDataType.php')
| -rw-r--r-- | app/Elements/DemographicDataType.php | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/app/Elements/DemographicDataType.php b/app/Elements/DemographicDataType.php new file mode 100644 index 0000000000..408610dd63 --- /dev/null +++ b/app/Elements/DemographicDataType.php @@ -0,0 +1,63 @@ +<?php + +/** + * webtrees: online genealogy + * Copyright (C) 2021 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + +declare(strict_types=1); + +namespace Fisharebest\Webtrees\Elements; + +use Fisharebest\Webtrees\I18N; + +use function strtoupper; + +/** + * <TYPE_OF_DEMOGRAPHICAL_DATA>:= {Size=1:35} + * Type the demographic data for a place. + * [ HSHO | CITI ] means: household | resident + */ +class DemographicDataType extends AbstractElement +{ + /** + * Convert a value to a canonical form. + * + * @param string $value + * + * @return string + */ + public function canonical(string $value): string + { + return strtoupper(parent::canonical($value)); + } + + + /** + * A list of controlled values for this element + * + * @return array<int|string,string> + */ + public function values(): array + { + $values = [ + '' => '', + 'HSHO' => I18N::translate('household'), + 'CITI' => I18N::translate('citizen'), + ]; + + uasort($values, [I18N::class, 'strcasecmp']); + + return $values; + } +} |
