Skip to content

ener/mpdf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PDF View

Extension for Kohana's View class that renders as a PDF instead of HTML. Uses MPDF to render normal HTML views as PDF Files.

Installation

If your application is a Git repository:

git submodule add git://github.com/ener/mpdf.git modules/mpdf
git submodule update --init

Or clone the the module separately:

cd modules
git clone git://github.com/ener/mpdf.git mpdf

Update DOMPDF

cd modules/mpdf
git submodule update --init

Configuration

Edit application/bootstrap.php and add a the module:

Kohana::modules(array(
    ...
    'mpdf' => 'modules/mpdf',
    ...
));

Usage

Placed in a controller action:

// Load a view using the PDF extension
$pdf = View_MPDF::factory('pdf/example');

// Use the PDF as the request response
$this->request->response = $pdf;

About

Портированный mPDF для Kohana 3

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages