1 | <?php |
||
18 | class Html2pdfFactory |
||
19 | { |
||
20 | private $html2_pdf_orientation; |
||
21 | private $html2_pdf_format; |
||
22 | private $html2_pdf_lang; |
||
23 | private $html2_pdf_unicode; |
||
24 | private $html2_pdf_encoding; |
||
25 | private $html2_pdf_margin; |
||
26 | /** |
||
27 | * @param string $orientation |
||
28 | * @param string $format |
||
29 | * @param string $lang |
||
30 | * @param boolean $unicode |
||
31 | * @param string $encoding |
||
32 | * @param int[] $margin |
||
33 | */ |
||
34 | public function __construct($orientation, $format, $lang, $unicode, $encoding, $margin) |
||
43 | |||
44 | |||
45 | public function getInstance($orientation = null, $format = null, $lang = null, $unicode = null, $encoding = null, $margin = null) |
||
58 | |||
59 | } |