Add controlled, translatable list of phone types
This commit is contained in:
parent
55ad6530dd
commit
401d557b66
2
l18n
2
l18n
|
@ -1 +1 @@
|
|||
Subproject commit 7d645afa2b7b6c88066adb4d76d79107635f55ab
|
||||
Subproject commit b4a7e9865492c6a68063e4af1d60ccd5a2b9f1c8
|
52
src/MDPhoneTypesSet.php
Normal file
52
src/MDPhoneTypesSet.php
Normal 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");
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user