public function MpdfGenerator::save in PDF generator API 2.x
Same name and namespace in other branches
- 8 src/Plugin/PdfGenerator/MpdfGenerator.php \Drupal\pdf_api\Plugin\PdfGenerator\MpdfGenerator::save()
Generate and save the PDF at a specific location.
Parameters
string $location: The location (both absolute/relative) path to save the generated PDF to.
Overrides PdfGeneratorInterface::save
File
- src/
Plugin/ PdfGenerator/ MpdfGenerator.php, line 164 - Contains \Drupal\pdf_api\Plugin\MpdfGenerator.
Class
- MpdfGenerator
- A PDF generator plugin for the mPDF library.
Namespace
Drupal\pdf_api\Plugin\PdfGeneratorCode
public function save($location) {
$this
->preGenerate();
$this->generator
->Output($location, 'F');
$this
->postGenerate();
}