MDAllowedValueSets/src/MDObjectPositionsSet.php

35 lines
1.0 KiB
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
public const POSITIONS = [
'front_front',
'left', 'top_left', 'top', 'top_right', 'right', 'bottom_right', 'bottom', 'bottom_left', 'center',
'rear_side',
'rear_left', 'rear_top_left', 'rear_top', 'rear_top_right', 'rear_right', 'rear_bottom_right', 'rear_bottom', 'rear_bottom_left', 'rear_center',
'underside', 'topside',
'edge', 'inside', 'other',
2020-08-06 16:18:12 +02:00
];
/**
* 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
}