1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-16 02:10:26 +01:00
openstamanager/templates/dashboard/settings.php
2018-05-22 17:42:19 +02:00

11 lines
309 B
PHP

<?php
$format = (isset($_SESSION['settings']['format'])) ? $_SESSION['settings']['format'] : 'A4';
$orientation = (isset($_SESSION['settings']['orientation'])) ? $_SESSION['settings']['orientation'] : 'L';
return [
'format' => $format,
'orientation' => $orientation,
// 'header-height' => 0,
];