openstamanager/templates/dashboard/settings.php

10 lines
304 B
PHP
Raw Normal View History

2018-05-08 15:55:46 +02:00
<?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,
];