mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-13 00:46:34 +01:00
17 lines
260 B
PHP
Executable File
17 lines
260 B
PHP
Executable File
<?php
|
|
|
|
$settings = [
|
|
'orientation' => 'P',
|
|
'format' => 'A4',
|
|
'font-size' => 10,
|
|
'margins' => [
|
|
'top' => 10,
|
|
'bottom' => 10,
|
|
'left' => 12,
|
|
'right' => 12,
|
|
],
|
|
'header-font-size' => 10,
|
|
];
|
|
|
|
return $settings;
|