Add controlled, translatable list of phone types

This commit is contained in:
Joshua Ramon Enslin 2021-03-13 01:18:54 +01:00
parent 55ad6530dd
commit 401d557b66
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE
2 changed files with 53 additions and 1 deletions

2
l18n

@ -1 +1 @@
Subproject commit 7d645afa2b7b6c88066adb4d76d79107635f55ab
Subproject commit b4a7e9865492c6a68063e4af1d60ccd5a2b9f1c8

52
src/MDPhoneTypesSet.php Normal file
View File

@ -0,0 +1,52 @@
<?PHP
/**
* Contains a class for controlling the list of available phone types.
* Phone types (e.g. mobile, work, fax) are mainly used for contact pages in
* musdb.
* The list aims to be roughly similar to common implementations of the vCard standard.
*
* @see https://tools.ietf.org/html/rfc2426
* @see https://tools.ietf.org/html/rfc6350
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
/**
* Class containing available place types.
*/
final class MDPhoneTypesSet extends MDValueSet {
const PHONE_TYPES = [
'work',
'home',
'mobile',
'work mobile',
'fax',
'fax work',
];
/**
* Gets an unsorted list of the entries in a translated version.
*
* @param MDTlLoader $tlLoader Translation loader.
*
* @return array<string>
*/
public static function getUnsortedList(MDTlLoader $tlLoader):array {
return parent::getTlUnsortedList($tlLoader, self::PHONE_TYPES, "phone_types", "phone_types");
}
/**
* Gets a list of the entries in a translated version.
*
* @param MDTlLoader $tlLoader Translation loader.
*
* @return array<string>
*/
public static function getSortedList(MDTlLoader $tlLoader):array {
return parent::getTlSortedList($tlLoader, self::PHONE_TYPES, "phone_types", "phone_types");
}
}