24 lines
827 B
PHP
24 lines
827 B
PHP
|
<?php
|
||
|
/**
|
||
|
* TNT OFFICIAL MODULE FOR PRESTASHOP
|
||
|
*
|
||
|
* @author GFI Informatique <www.gfi.fr>
|
||
|
* @copyright 2016-2017 GFI Informatique, 2016-2017 TNT
|
||
|
* @license https://opensource.org/licenses/MIT MIT License
|
||
|
*/
|
||
|
|
||
|
require_once _PS_MODULE_DIR_.'tntofficiel/libraries/TNTOfficiel_Debug.php';
|
||
|
|
||
|
class TNTOfficiel_ManifestPDFGenerator extends PDFGenerator
|
||
|
{
|
||
|
public function Header()
|
||
|
{
|
||
|
TNTOfficiel_Debug::log(array('msg' => '>>', 'file' => __FILE__, 'line' => __LINE__));
|
||
|
|
||
|
$this->writeHTML($this->header);
|
||
|
|
||
|
$this->writeHTML('<table style="width: 100%;"><tr style="width: 100%;"><td style="width: 33%"></td><td style="width: 33%"></td><td style="width: 33%; text-align: right">Page : '.$this->getAliasNumPage().' de '.$this->getAliasNbPages().'</td></tr></table>');
|
||
|
}
|
||
|
|
||
|
}
|