You are here

public function PdfExportMpdfProcessor::save in PDF Export 7

Save generated file to the filesystem.

Parameters

string $filename: The path where the pdf should be exported.

Return value

bool TRUE if successfully exported. FALSE otherwise.

Overrides PdfExportProcessorInterface::save

File

pdf_export_mpdf/includes/PdfExportMpdfProcessor.inc, line 69
PDF Export: mPDF processor class.

Class

PdfExportMpdfProcessor
@file PDF Export: mPDF processor class.

Code

public function save($filename) {
  return $this->library
    ->Output($filename, 'F');
}