*/ declare(strict_types = 1); /** * Class containing available positions on an object. */ final class MDObjectPositionsSet extends MDValueSet { 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 */ public static function getSortedList(MDTlLoader $tlLoader):array { return parent::getTlSortedList($tlLoader, self::POSITIONS, "position_set", "position_set"); } }