2017 © Pedro Peláez
 

symfony-bundle dompdf-bundle

A wrapper for using DomPDF inside Symfony 2

image

slik/dompdf-bundle

A wrapper for using DomPDF inside Symfony 2

  • Friday, October 30, 2015
  • by christianvermeulen
  • Repository
  • 3 Watchers
  • 10 Stars
  • 70,040 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 20 Forks
  • 13 Open issues
  • 1 Versions
  • 3 % Grown

The README.md

What is DomPDFBundle?

This bundle provides a wrapper for using DomPDF inside Symfony2., (*1)

Installation

When using composer add the following to your composer.json, (*2)

// composer.json
{
    //...

    "require": {
        //...
        "slik/dompdf-bundle" : "dev-master"
    }

    //...
}

and run php composer.phar update slik/dompdf-bundle., (*3)

Next add the following to your appkernel:, (*4)

    // in AppKernel::registerBundles()
    $bundles = array(
        // Dependencies
        new Slik\DompdfBundle\SlikDompdfBundle();
    );

Custom configuration

Copy the dompdf_config..inc.php.dist files to dompdf_config..inc.php to your /app directory and follow the dompdf usage docs., (*5)

Usage

Whenever you need to turn something into a pdf just use this anywhere in your controller:, (*6)

    // Set some html and get the service
    $html = '

Sample html

'; $dompdf = $this->get('slik_dompdf'); // Generate the pdf $dompdf->getpdf($html); // Either stream the pdf to the browser $dompdf->stream("myfile.pdf"); // Or get the output to handle it yourself $pdfoutput = $dompdf->output();

The Versions

30/10 2015

dev-master

9999999-dev

A wrapper for using DomPDF inside Symfony 2

  Sources   Download

All rights reserved

The Requires

 

development bundle symfony