mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-23 13:58:25 +01:00
18 lines
359 B
PHP
18 lines
359 B
PHP
|
<?php
|
||
|
|
||
|
return '
|
||
|
<table style="color:#aaa; font-size:10px;">
|
||
|
<tr>
|
||
|
<td align="left" style="width:97mm;">
|
||
|
'.tr('Stampato con OpenSTAManager').'
|
||
|
</td>
|
||
|
|
||
|
<td align="right" style="width:97mm;">
|
||
|
'.tr('Pagina _PAGE_ di _TOTAL_', [
|
||
|
'_PAGE_' => '{PAGENO}',
|
||
|
'_TOTAL_' => '{nb}',
|
||
|
]).'
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>';
|