Juergen Posted June 30, 2015 Share Posted June 30, 2015 Is it possible to include child pages in the PDF?? I have created a pricelist and each item of the pricelist is a single page. On the pricelist template I output all child pages with a foreach loop. The result is my pricing table. Unfortunately on the PDF the content of the child pages is not visible, so I have an empty page. Link to comment Share on other sites More sharing options...
LostKobrakai Posted June 30, 2015 Share Posted June 30, 2015 I've not used the Pages2PDF module by now, but you can use the WirePDF module, which is part of the installation, to render any html content you pass to it. 1 Link to comment Share on other sites More sharing options...
Juergen Posted June 30, 2015 Share Posted June 30, 2015 Thanks LostKobrakai. Thats a quite good idea to try it out. Link to comment Share on other sites More sharing options...
Wanze Posted June 30, 2015 Author Share Posted June 30, 2015 Is it possible to include child pages in the PDF?? I have created a pricelist and each item of the pricelist is a single page. On the pricelist template I output all child pages with a foreach loop. The result is my pricing table. Unfortunately on the PDF the content of the child pages is not visible, so I have an empty page. You have the full ProcessWire API available in your Pages2Pdf templates. Did you output the children also in the template inside "site/templates/pages2pdf"? If so, they should appear in the PDF files. Only problem I can think of is that the PDF enginge can't handle your markup, you might need to simplify the HTML. But for testing purposes, you can also just list the prices-pages in a simple list. If it does still not work, please post the content of your pages2pdf "pricelist" template. Cheers 1 Link to comment Share on other sites More sharing options...
Juergen Posted June 30, 2015 Share Posted June 30, 2015 Did you output the children also in the template inside "site/templates/pages2pdf"? If so, they should appear in the PDF files. This was the problem. I have forgotten to include the child pages template. Thanks Wanze 1 Link to comment Share on other sites More sharing options...
Webrocker Posted July 22, 2015 Share Posted July 22, 2015 Hi Wanze, thanks for this cool module! this really did save some headscratching for a current project I'm working on. Do you have a tip how I can include my ./template/_init.php file for the "pdf"template? I need to use some vars that are declared site-wide in this _init.php file. I'm sure this can easily be achived, esp. after seeing that there's a hookable createPDF function… but I'm not sure how this "prepend file to template" would be addressed…? Sorry if this is something totally obvious, I'd glady take a rtfm link, as well ;-) cheersTom Link to comment Share on other sites More sharing options...
Wanze Posted July 22, 2015 Author Share Posted July 22, 2015 Hi Tom, Thanks. Simplest solution would be to include the file inside your PDF templates, like this: // We are in a template file under /site/templates/pages2pdf/, include /site/templates/_init.php include('../_init.php'); Cheers 1 Link to comment Share on other sites More sharing options...
Webrocker Posted July 22, 2015 Share Posted July 22, 2015 Hi, ok, I forgot to mention that I need to use some of the "_init.php" vars in the _header/_footer.php inside ./pages2pdf. I tried to include the _init there, and then in the template as you suggested, but a simple var_dump for one of the "_init" variables returns empty. to give you a bit of background; I use thiis approach: https://processwire.com/talk/topic/10447-using-translatable-strings-across-template-files/#entry99012 for the template translation thing, but somehow the templates inside pages2pdf are ignorant of the "_string.php" file. I have some "translateble" strings in _header/footer.php, but they're ignorant of the translations. cheers Tom UPDATE: Ok, after some more debugging I see that the include_once('../_init.php') works like you presumed, the vars are there. something else must interfer with the translation thing, at least it is not caused by a not-working include. sorry for the bother. UPDATE 2: After even more debugging and testing; the _init needs to be included in all three php files: _header.php, page.php, _footer.php - it seems to be scoped to that file alone where it is included. I somehow was expectng that the incude in the _header.php alone would be enough, but after reflecting how the PDF is looking -- where _header and _footer are repeated on every "page" of the PDF -- it makes sense that this didn't work out. However, I think having three identical includes that are repeatetly called during the creation of the PDF is not really the best way to go about this, even if it now works… ? 1 Link to comment Share on other sites More sharing options...
Wanze Posted July 23, 2015 Author Share Posted July 23, 2015 @Webrocker Glad it works for you! However, I think having three identical includes that are repeatetly called during the creation of the PDF is not really the best way to go about this, even if it now works… ? I don't see a problem here if your include does not do some heavy stuff, in this case you should cache the results. But I think there's no easy alternative... ProcessWire does the same for you in the background when you're using the prependTemplate file option, it is just included "automaticaly" in every ProcessWire template. I could check if this setting is enabled and include the prepended file in the background, but this might not be desired in another situation Link to comment Share on other sites More sharing options...
LostKobrakai Posted September 11, 2015 Share Posted September 11, 2015 WirePdf's $pdf->mpdf doesn't return the mpdf instance for me and a quick look through the code seems to confirm that. 1 Link to comment Share on other sites More sharing options...
bernhard Posted September 11, 2015 Share Posted September 11, 2015 had also problems with that so i included it manually... i thought i was doing something wrong with those instructions of the module's page For advanced usage, you can also get the mPDF instance from the module: $pdf = $modules->get('WirePDF'); // Get mPDF instance $mpdf = $pdf->mpdf; // Set back mPDF instance $pdf->mpdf = $mpdf; Link to comment Share on other sites More sharing options...
Wanze Posted September 13, 2015 Author Share Posted September 13, 2015 Hi guys, This is a bug. It should work if you add $this->initPDF() before this line: https://github.com/wanze/Pages2Pdf/blob/master/WirePDF.module#L91 I will fix it and update the module. Cheers 1 Link to comment Share on other sites More sharing options...
adrian Posted September 15, 2015 Share Posted September 15, 2015 Hi Wanze, It looks like the current version of this can't be installed using PW's built-in by class name feature, because it tries to install Pages2df before WirePDF. It works fine if you use the URL option and point it to the zip on Github though because that way it downloads and extracts and shows you both modules with the option to install WirePDF. Link to comment Share on other sites More sharing options...
LostKobrakai Posted September 15, 2015 Share Posted September 15, 2015 I've already add this to github, as even the first option should be able to just download the thing without installing. https://github.com/ryancramerdesign/ProcessWire/issues/1387 1 Link to comment Share on other sites More sharing options...
Wanze Posted September 15, 2015 Author Share Posted September 15, 2015 Hi Adrian, Thanks for the information. Do you know if I can solve this somehow? Seems like ProcessWire should look for the missing dependency as well when using the classname installation-mode, but I'm not sure if this is easy possible. Cheers Edit: Thanks LostKobrakai for opening the issue Link to comment Share on other sites More sharing options...
LostKobrakai Posted September 15, 2015 Share Posted September 15, 2015 You could switch dependencies, where Pages2Pdf installs WirePDF, instead of requiring it to be installed previously. 1 Link to comment Share on other sites More sharing options...
LostKobrakai Posted September 24, 2015 Share Posted September 24, 2015 Hi guys, This is a bug. It should work if you add $this->initPDF() before this line: https://github.com/wanze/Pages2Pdf/blob/master/WirePDF.module#L91 I will fix it and update the module. Cheers That's really a bigger thing, as the whole mpdf instance is being overwritten on save, if one is using pageOrientation or something other "constructor argument". Link to comment Share on other sites More sharing options...
celfred Posted October 6, 2015 Share Posted October 6, 2015 Hi there, I can't guarantee that this is an issue with pages2pdf, but let me point to my last Forum post : https://processwire.com/talk/topic/11065-urlsegment-issue-string-vs-integer/ Footer inclusion seems to mess things up. Maybe I'm missing something, though. If so, I'm sorry. (It sounds surprising that I would be the only one facing such a problem). Link to comment Share on other sites More sharing options...
LostKobrakai Posted October 16, 2015 Share Posted October 16, 2015 It would be a nice addition if one could directly use mpdf's functions on the wirepdf module instead of retrieving and setting the mpdf instance every time one does need a native functionality. Link to comment Share on other sites More sharing options...
Soma Posted October 20, 2015 Share Posted October 20, 2015 I'm having problem with this module not using translations in template __("Text"). It's always default language for those strings. Ah sorry, I forgot that the pages2pdf template aren't translated yet Link to comment Share on other sites More sharing options...
Wanze Posted October 23, 2015 Author Share Posted October 23, 2015 That's really a bigger thing, as the whole mpdf instance is being overwritten on save, if one is using pageOrientation or something other "constructor argument". I removed the check to constructor arguments with the latest release on the dev branch. However, you always need to set the config options before saving the PDF file. It would be a nice addition if one could directly use mpdf's functions on the wirepdf module instead of retrieving and setting the mpdf instance every time one does need a native functionality. This feature is available on the dev branch, you should now be able to call any method on the mPDF instance directly trough WirePDF (as long as the method does not exist as public method on WirePDF already). Technically setting back the mPDF instance was not needed before, I removed this from the ReadMe. If you find any time to get a copy from the dev branch and check if everything works for you, that would be great! Cheers 2 Link to comment Share on other sites More sharing options...
Spica Posted November 15, 2015 Share Posted November 15, 2015 Where to direct a custom PDF File Path in the WirePDF config to, e.g. for folder templates? Don t get it running. Link to comment Share on other sites More sharing options...
Wanze Posted November 16, 2015 Author Share Posted November 16, 2015 @Spica, I don't understand your question, are you trying to set the path to the template that defines the markup of the PDF? $pdf = $modules->get('WirePDF'); $pdf->markupMain = $config->paths->templates . 'pdf_template.php'; Link to comment Share on other sites More sharing options...
Spica Posted November 16, 2015 Share Posted November 16, 2015 Sorry, typing error. I meant the CSS File Path in the WirePDF config mask declared with "Enter path and filename of a CSS file containing default styles to be used by mPDF for the HTML markup" for substituting the templates/pages2pdf/styles.css. e.g ../../templates/vendor/my.css, or templates/vendor/my.css does not succeed. Link to comment Share on other sites More sharing options...
Wanze Posted November 16, 2015 Author Share Posted November 16, 2015 I think you need the full path to the file, e.g. /var/www/mysite/site/templates/myCss.css If you don't know the path, check the output of "$config->paths->templates". Let me know if it still does not work! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now