Add source type set (MDSourceTypeSet)
This commit is contained in:
2
l18n
2
l18n
Submodule l18n updated: 9fb2ee21ac...6d52ec1208
36
src/MDSourceTypeSet.php
Normal file
36
src/MDSourceTypeSet.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?PHP
|
||||
/**
|
||||
* Contains a class of available licenses.
|
||||
*
|
||||
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
||||
*/
|
||||
declare(strict_types = 1);
|
||||
|
||||
/**
|
||||
* Class containing static functions for getting available licenses on md.
|
||||
*/
|
||||
final class MDSourceTypeSet extends MDValueSet {
|
||||
|
||||
const SOURCE_TYPES = [
|
||||
'article',
|
||||
'inbook',
|
||||
'book',
|
||||
'phdthesis',
|
||||
'electronical',
|
||||
'misc',
|
||||
];
|
||||
|
||||
/**
|
||||
* Gets a sorted 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::SOURCE_TYPES, "source_type_set", "source_type_set");
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user