2020-08-06 18:27:25 +02:00
|
|
|
<?PHP
|
|
|
|
/**
|
|
|
|
* Parent class for controlled lists of available values at md.
|
|
|
|
*
|
|
|
|
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generic class for value sets.
|
|
|
|
*/
|
|
|
|
class MDValueSet {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list of entries in a translated version.
|
|
|
|
*
|
|
|
|
* @param MDTlLoader $tlLoader Translation loader.
|
|
|
|
* @param array<string> $keyList List of keys to get translations for.
|
|
|
|
* @param string $tlFileName Name of the translation file.
|
|
|
|
* @param string $tlVarName Variable of the translation.
|
|
|
|
*
|
|
|
|
* @return array<string>
|
|
|
|
*/
|
2020-08-06 18:42:38 +02:00
|
|
|
public static function getTlSortedList(MDTlLoader $tlLoader, array $keyList, string $tlFileName, string $tlVarName):array {
|
2020-08-06 18:27:25 +02:00
|
|
|
|
|
|
|
$output = [];
|
|
|
|
foreach ($keyList as $tID) {
|
2020-08-06 23:29:23 +02:00
|
|
|
if ($tID === "") $output[$tID] = "";
|
|
|
|
else $output[$tID] = $tlLoader->tl($tlFileName, $tlVarName, $tID);
|
2020-08-06 18:27:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
asort($output);
|
|
|
|
return $output;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|