mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-11 07:56:16 +01:00
19 lines
313 B
PHP
19 lines
313 B
PHP
<?php
|
|
|
|
$settings = [
|
|
'orientation' => 'P',
|
|
'format' => 'A4',
|
|
'font-size' => 10,
|
|
'margins' => [
|
|
'top' => 10,
|
|
'bottom' => 10,
|
|
'left' => 12,
|
|
'right' => 12,
|
|
],
|
|
'header-height' => 35,
|
|
'footer-height' => 5,
|
|
'header-font-size' => 10,
|
|
];
|
|
|
|
return $settings;
|