17 lines
378 B
PHP
17 lines
378 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$position_set = array (
|
|
'left' => 'Links',
|
|
'top_left' => 'Oben links',
|
|
'top' => 'Oben',
|
|
'top_right' => 'Oben rechts',
|
|
'right' => 'Rechts',
|
|
'bottom_right' => 'Unten rechts',
|
|
'bottom' => 'Unten',
|
|
'bottom_left' => 'Unten links',
|
|
'center' => 'Mittig',
|
|
'rear_side' => 'Rückseite',
|
|
'edge' => 'Rand',
|
|
'other' => 'Weiteres',
|
|
);
|