marceltk / unisoft-dompdf-module
A Zend Framework 2 module for incorporating DOMPDF support. (Fork: Raymond Kolbe)
Requires
- php: >=5.3.0
- dompdf/dompdf: ^0.6
This package is not auto-updated.
Last update: 2024-11-26 11:01:10 UTC
README
The DOMPDF module integrates the DOMPDF library with Zend Framework 2 with minimal effort on the consumer's end.
Requirements
https://github.com/zendframework/zendframework
- [Zend Framework 2]
- [Zend Framework 3]
Installation
Installation of DOMPDFModule uses PHP Composer. For more information about PHP Composer, please visit the official PHP Composer site.
Installation steps
-
cd my/project/directory
-
create a
composer.json
file with following contents:{ "require": { "marceltk/unisoft-dompdf-module": "dev-master" } }
-
install PHP Composer via
curl -s http://getcomposer.org/installer | php
(on windows, download http://getcomposer.org/installer and execute it with PHP) -
run
php composer.phar install
-
open
my/project/directory/config/application.config.php
and add the following key to yourmodules
:'DOMPDFModule',
Configuration options
You can override options via the dompdf_module
key in your local or global config files. See DOMPDFModule/config/module.config.php for config options.
Usage
<?php namespace Application\Controller; use Zend\Mvc\Controller\AbstractActionController; use DOMPDFModule\View\Model\PdfModel; class ReportController extends AbstractActionController { public function monthlyReportPdfAction() { $pdf = new PdfModel(); $pdf->setOption('filename', 'monthly-report'); // Triggers PDF download, automatically appends ".pdf" $pdf->setOption('paperSize', 'a4'); // Defaults to "8x11" $pdf->setOption('paperOrientation', 'landscape'); // Defaults to "portrait" // To set view variables $pdf->setVariables(array( 'message' => 'Hello' )); return $pdf; } }
To-do
- Add command line support.