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>
|
|
|
|
*/
|
2020-08-07 00:12:49 +02:00
|
|
|
declare(strict_types = 1);
|
2020-08-06 16:18:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class containing available positions on an object.
|
|
|
|
*/
|
2020-08-24 20:35:15 +02:00
|
|
|
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',
|
|
|
|
];
|
|
|
|
|
2020-08-24 20:14:41 +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
|
|
|
}
|