mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-16 02:10:26 +01:00
11 lines
309 B
PHP
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,
|
|
];
|