MDAllowedValueSets/src/MDObjectPositionsSet.php

30 lines
832 B
PHP
Raw Normal View History

2020-08-06 16:18:12 +02:00
<?PHP
/**
* Contains a class for controlling the list of available positions on an object.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
2020-08-06 16:18:12 +02:00
/**
* Class containing available positions on an object.
*/
2020-08-29 17:21:18 +02:00
final class MDObjectPositionsSet extends MDValueSet {
2020-08-06 16:18:12 +02:00
const POSITIONS = [
'left', 'top_left', 'top', 'top_right', 'right', 'bottom_right', 'bottom', 'bottom_left', 'center', 'rear_side', 'edge', 'other',
];
/**
* 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::POSITIONS, "position_set", "position_set");
}
2020-08-06 16:18:12 +02:00
}