mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-20 12:14:01 +01:00
10 lines
284 B
PHP
Executable File
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,
|
|
];
|