コード例 #1
0
ファイル: TPLEXTENDED.php プロジェクト: artack/fpdi
 /**
  * See FPDF-Documentation ;-)
  *
  * AddPage is not available when you're "in" a template.
  */
 function AddPage($orientation = '', $format = '', $keepmargins = false, $tocpage = false)
 {
     if (is_subclass_of($this, 'TCPDF')) {
         $args = func_get_args();
         return call_user_func_array(array($this, 'TCPDF::AddPage'), $args);
     }
     if ($this->_intpl) {
         $this->Error('Adding pages in templates isn\'t possible!');
     }
     parent::AddPage($orientation, $format);
 }