Magento PDF
Magento model that generates, saves and deletes PDF files from a provided url., (*1)
Installation
composer require canal-web/magento-pdf
, (*2)
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 :, (*3)
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
, (*4)