mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-25 15:22:24 +01:00
56f4e10e84
Aggiunto supporto a footer specifici per l'ultima pagina della stampa: vengono **aggiunti** al footer presente di default con una distanza fissa dal bordo in basso.
10 lines
280 B
PHP
10 lines
280 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,
|
|
];
|