26 lines
502 B
PHP
26 lines
502 B
PHP
|
<?php
|
||
|
require_once 'Vendors/tcpdf/tcpdf.php';
|
||
|
|
||
|
require_once 'Vendors/fpdi/fpdi.php';
|
||
|
|
||
|
class PDF extends FPDI {
|
||
|
/**
|
||
|
* "Remembers" the template id of the imported page
|
||
|
*/
|
||
|
var $_tplIdx;
|
||
|
|
||
|
/**
|
||
|
* include a background template for every page
|
||
|
*/
|
||
|
function Header() {
|
||
|
if (is_null($this->_tplIdx)) {
|
||
|
$file = realpath(dirname(__FILE__)).'/modele.pdf';
|
||
|
$this->setSourceFile($file);
|
||
|
$this->_tplIdx = $this->importPage(1);
|
||
|
}
|
||
|
$this->useTemplate($this->_tplIdx);
|
||
|
}
|
||
|
|
||
|
function Footer() {
|
||
|
}
|
||
|
}
|