The DOMPDF module integrates the DOMPDF library with Zend Framework 2 with minimal effort on the consumer's end.
Installation of DOMPDFModule uses PHP Composer. For more information about PHP Composer, please visit the official PHP Composer site.
cd my/project/directorycreate a
composer.jsonfile with following contents:{ "require": { "dino/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 installopen
my/project/directory/config/application.config.phpand add the following key to yourmodules:'DOMPDFModule',
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.
<?phpnamespaceApplication\Controller;
useZend\Mvc\Controller\AbstractActionController;
useDOMPDFModule\View\Model\PdfModel;
class ReportController extends AbstractActionController
{
publicfunctionmonthlyReportPdfAction()
{
$pdf = newPdfModel();
$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;
}
}- Add command line support.
