Skip to content

canal-web/Magento_PDF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Magento PDF

Magento model that generates, saves and deletes PDF files from a provided url.

Installation

composer require canal-web/magento-pdf

Generating a PDF and sending it as a file download

Mage::getModel('canalweb_pdf/pdf')->generatePdf($my_url);

By default, the pdf name is pdf-*timestamp*.pdf. The prefix may be overridden like this :

Mage::getModel('canalweb_pdf/pdf')->generatePdf($my_url, 'my-prefix-');

Generating a PDF and saving it

Mage::getModel('canalweb_pdf/pdf')->savePdf($my_url);

Deleting a PDF

Mage::getModel('canalweb_pdf/pdf')->deletePdf('pdf-name.pdf');

Customize rendered PDF

Add a pdf.css file in the css folder of your magento theme. E.g. skin/frontend/myTheme/default/css/pdf.css

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages