1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-04 20:09:40 +01:00
openstamanager/templates/dashboard/settings.php
2018-05-08 15:55:46 +02:00

10 lines
304 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,
];