You are here

public function PdfTemplate::addPdfDocument in Views PDF 7.3

Same name and namespace in other branches
  1. 6 views_pdf_template.php \PdfTemplate::addPdfDocument()
  2. 7 views_pdf_template.php \PdfTemplate::addPdfDocument()
  3. 7.2 views_pdf_template.php \PdfTemplate::addPdfDocument()

This method adds a existing PDF document to the current document. If the file does not exists this method will return 0. In all other cases it will returns the number of the added pages.

Parameters

$path string Path to the file:

$position 'leading' or 'succeed' according to position of document:

Return value

integer Number of added pages

File

./views_pdf_template.php, line 893
PDF Class to generate PDFs with native PHP. This class based on FPDF and FPDI.

Class

PdfTemplate
The main class to generate the PDF.

Code

public function addPdfDocument($path = '', $position = '') {
  $this->position = $position;
  if (empty($path) || !file_exists($path)) {
    return 0;
  }
  $numberOfPages = $this
    ->setSourceFile($path);
  for ($i = 1; $i <= $numberOfPages; $i++) {
    $dim = $this
      ->getTemplateSize($i);
    $format[0] = $dim['w'];
    $format[1] = $dim['h'];
    if ($dim['w'] > $dim['h']) {
      $orientation = 'L';
    }
    else {
      $orientation = 'P';
    }
    $this
      ->setPageFormat($format, $orientation);
    parent::addPage();

    // Ensure that all new content is printed to a new page
    $this->y = 0;
    $page = $this
      ->importPage($i);
    $this
      ->useTemplate($page, 0, 0);
    $this->addNewPageBeforeNextContent = TRUE;
  }
  return $numberOfPages;
}