2017 © Pedro Peláez
 

silverstripe-module silverstripe-wkhtmltopdf

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

image

creativesynergy/silverstripe-wkhtmltopdf

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  • Tuesday, March 13, 2018
  • by bhofstaetter
  • Repository
  • 2 Watchers
  • 8 Stars
  • 2,930 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 2 Open issues
  • 10 Versions
  • 19 % Grown

The README.md

This module is now abandoned, for SilverStripe 4 you can use my new and improved version silverstripe-wkhtmltox, (*1)


Create PDFs in SilverStripe with the power of WKhtmlTOpdf

This module adds the possibility to simply create PDFs from every DataObject you have. Based on WKhtmlTOpdf and mikehaertl's php wrapper., (*2)

Installation

``` sh $ composer require creativesynergy/silverstripe-wkhtmltopdf, (*3)


## Getting started 1. [WKhtmlTOpdf](http://wkhtmltopdf.org/) must be installed on your server to use this module 2. You'll need to copy the footer.html and header.html files from the module templates folder to ``mysite/templates/Pdf/`` 3. Create a css file called 'pdf.css' located under ``themes/your-theme/css/`` ## Usage #### Basics ``` php $trainer = Trainer::get()->first(); $pdf = new SS_PDF(); $html = $pdf::getHtml($trainer); $pdf->add($html); $pdf->save('trainer.pdf');

Add a cover

``` php $pdf->add('.../path/to/cover.html', 'Cover'); // You could use the same inputs as listed under "Add pages", (*4)


#### Add pages ``` php $pdf->add('<html>...</html>'); // Html code $pdf->add('.../path/to/page.html'); // Html file $pdf->add('https://www.google.com'); // Website $pdf->add($pdf::getHtml($dataObject)); // DataObject

Add specific options for one page

``` php $options = array( 'image-quality' => 100, 'margin-bottom' => 0, 'margin-left' => 0, 'margin-right' => 0, 'margin-top' => 0, 'header-html' => null, 'footer-html' => null );, (*5)

$pdf->add('.../path/to/cover.html', 'Cover', $options);, (*6)

All available options can be found [here](http://wkhtmltopdf.org/usage/wkhtmltopdf.txt)

#### Add a page and pass some variables to it
``` php
$variables = array(
  'Title'             => 'My New Title',
  'MyFreakyWhatever'  => DataObject::get()->byID(123)->WhatEver()
);

$html = $pdf::getHtml($trainer, $variables);

$pdf->add($html);

Change the page template

``` php $html = $pdf::getHtml($trainer, $variables, 'NewPDFTemplate'); $pdf->add($html);, (*7)

By default the module will look for a template called "ClassName_pdf"

#### Preview in browser
``` php
$pdf->preview();

Save

``` php $pdf->save('trainer.pdf'); // This will also return an file instance to work with, (*8)


#### Specify the folder to save in ``` php $pdf->setFolderName('trainers/pdfs');

Download

``` php $pdf->download('trainer.pdf');, (*9)


## Global options #### Set the global options used for all pages in this pdf ``` php $css = BASE_PATH . '/themes/' . SSViewer::current_theme() . '/css/pdf.css'; $header = BASE_PATH . '/mysite/templates/Pdfs/header.html'; $footer = BASE_PATH . '/mysite/templates/Pdfs/footer.html'; $options = array( 'enable-javascript', 'dpi' => 150, 'image-dpi' => 150, 'image-quality' => 100, 'user-style-sheet' => $css, 'header-html' => $header, 'footer-html' => $footer, ... ... ); $pdf->setGlobalOptions($options);

Set or modifiy only one global option

``` php $pdf->setOption('enable-javascript');, (*10)

$pdf->setOption('dpi', '300');, (*11)

$pdf->setOption('run-script', array( '../path/to/local/script1.js' ));, (*12)

$pdf->setOption('replace', array( '{whatever}' => 'something new' ));, (*13)


#### Remove one global option ``` php $pdf->removeOption('replace');

Page template

If your page ist based on an DataObject and you generate the html with the $pdf::getHtml() function, you'll be able to set a specific template to use for this page by passing it as third parameter to the function (without the .ss ending!). By default, the module will search for a template called "Classname_pdf"., (*14)

WKhtmlTOpdf let you specify seperate files for your pdf's header and footer section. By default they are located under mysite/templates/Pdf/header.html and mysite/templates/Pdf/footer.html., (*15)

You can change the location of those files or remove the header and/or footer completely by changing the global or page specific options., (*16)

``` php $pdf->setOption('header-html', '/path/to/header.html'); $pdf->removeOption('footer-html');, (*17)


Demo Pdf.ss, header.html and footer.html files are included to get you started #### Styling Thanks to WKhtmlTOpdf you have full CSS3 and HTML5 support and will be able to do fancy things "without" the limitations you'll have to face while using other tools like dompdf or tcpdf. You can even use javascript to modify your pages. By default the module requires a pdf.css in under themes/your-theme/css/pdf.css You can change this by setting the global or page specific option ``` php $pdf->setOption('user-style-sheet', '/path/to/pdf.css');

The Versions

13/03 2018

dev-master

9999999-dev https://github.com/creativeSynergy/silverstripe-wkhtmltopdf

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  Sources   Download

BSD-3-Clause

The Requires

 

by Benedikt Hofstaetter

silverstripe pdf wkhtmltopdf

13/03 2018

1.0.8

1.0.8.0 https://github.com/creativeSynergy/silverstripe-wkhtmltopdf

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  Sources   Download

BSD-3-Clause

The Requires

 

by Benedikt Hofstaetter

silverstripe pdf wkhtmltopdf

13/03 2018

1.0.7

1.0.7.0 https://github.com/creativeSynergy/silverstripe-wkhtmltopdf

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  Sources   Download

BSD-3-Clause

The Requires

 

by Benedikt Hofstaetter

silverstripe pdf wkhtmltopdf

18/08 2017

1.0.6

1.0.6.0 https://github.com/creativeSynergy/silverstripe-wkhtmltopdf

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  Sources   Download

BSD-3-Clause

The Requires

 

by Benedikt Hofstaetter

silverstripe pdf wkhtmltopdf

03/07 2017

1.0.5

1.0.5.0 https://github.com/creativeSynergy/silverstripe-wkhtmltopdf

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  Sources   Download

BSD-3-Clause

The Requires

 

by Benedikt Hofstaetter

silverstripe pdf wkhtmltopdf

06/12 2016

1.0.4

1.0.4.0 https://github.com/creativeSynergy/silverstripe-wkhtmltopdf

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  Sources   Download

BSD-3-Clause

The Requires

 

by Benedikt Hofstaetter

silverstripe pdf wkhtmltopdf

19/09 2016

1.0.3

1.0.3.0 https://github.com/creativeSynergy/silverstripe-wkhtmltopdf

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  Sources   Download

BSD-3-Clause

The Requires

 

by Benedikt Hofstaetter

silverstripe pdf wkhtmltopdf

01/02 2016

1.0.2

1.0.2.0 https://www.csy.io

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  Sources   Download

BSD-3-Clause

The Requires

 

by Benedikt Hofstaetter

silverstripe pdf wkhtmltopdf

10/01 2016

1.0.1

1.0.1.0 https://www.csy.io

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  Sources   Download

BSD-3-Clause

The Requires

 

by Benedikt Hofstaetter

silverstripe pdf wkhtmltopdf

08/01 2016

1.0.0

1.0.0.0 https://www.csy.io

Adds the possibility to create PDFs from all DataObjects with WKHTMLTOPDF

  Sources   Download

BSD-3-Clause

The Requires

 

by Benedikt Hofstaetter

silverstripe pdf wkhtmltopdf