1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-20 12:14:01 +01:00
openstamanager/templates/dashboard/settings.php
2020-02-14 17:02:16 +01:00

10 lines
284 B
PHP
Executable File

<?php
$format = (isset($_SESSION['dashboard']['format'])) ? $_SESSION['dashboard']['format'] : 'A4';
$orientation = (isset($_SESSION['dashboard']['orientation'])) ? $_SESSION['dashboard']['orientation'] : 'L';
return [
'format' => $format,
'orientation' => $orientation,
];