init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
26
fpdf_print.php
Normal file
26
fpdf_print.php
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
class FPDI_PRINT extends FPDF { // <-- Falls die Template-Klasse fpdf_tpl.php nicht verwendet wird
|
||||
//class FPDI_PRINT extends FPDI { // <-- Falls die Template-Klasse fpdf_tpl.php mit verwendet verwendet wird
|
||||
|
||||
var $nr;
|
||||
|
||||
function _putresources() {
|
||||
parent::_putresources();
|
||||
$this->_newobj();
|
||||
$this->nr=$this->n;
|
||||
$this->_out('<<');
|
||||
$this->_out('/S/Named');
|
||||
$this->_out('/Type/Action');
|
||||
$this->_out('/N/Print');
|
||||
$this->_out('>>');
|
||||
$this->_out('endobj');
|
||||
}
|
||||
|
||||
function _putcatalog() {
|
||||
parent::_putcatalog();
|
||||
$this->_out('/OpenAction '.$this->nr.' 0 R');
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue