pimcore / web2print-tools-bundle
Installs: 159 619
Dependents: 3
Suggesters: 0
Security: 0
Stars: 15
Watchers: 19
Forks: 16
Open Issues: 4
Type:pimcore-bundle
Requires
- php: ~8.1.0 || ~8.2.0 || ~8.3.0
- pimcore/output-data-config-toolkit-bundle: ^4.1 || ^5.0
- pimcore/pimcore: ^11.0
Requires (Dev)
- phpstan/phpstan: ^1.9
Suggests
- pimcore/admin-ui-classic-bundle: Required for Pimcore 11
- 5.x-dev
- 5.1.x-dev
- v5.1.1
- v5.1.0
- v5.0.2
- v5.0.1
- v5.0.0
- v5.0.0-RC2
- v5.0.0-RC1
- v5.0.0-BETA2
- v5.0.0-BETA1
- v4.0.10
- v4.0.9
- v4.0.8
- v4.0.7
- v4.0.6
- v4.0.5
- v4.0.4
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- v3.4.4
- v3.4.3
- v3.4.2
- v3.4.1
- v3.4.0
- v3.3.1
- v3.3.0
- v3.2.1
- v3.2.0
- v3.1.1
- v3.1.0
- v3.0.0
- v2.7.2
- v2.7.1
- v2.7.0
- v2.6.0
- v2.5.0
- v2.4.1
- v2.4.0
- v2.3.0
- v2.2.3
- v2.2.2
- v2.2.1
- v2.2.0
- v2.1.1
- 2.1.0
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.0.2
- 1.0.1
- 1.0.0
- dev-create-cla-check
This package is auto-updated.
Last update: 2024-11-02 16:26:52 UTC
README
Adds following additional features to the web2print functionality of Pimcore.
- Favorite Output Channels
- Document Editable for Configurable Tables
- PDFreactor controller tool
- table of contents creation (awesomizr.js)
Favorite Output Channels
Based on the OutputDataConfigToolkit (https://github.com/pimcore/output-data-config-toolkit) this feature allows to save output channels centrally and reuse them in several places.
Document Editable for Configurable Tables
Editable for adding tables with configurable columns based on the output channels to documents.
Usage:
{{ pimcore_outputchanneltable('tableconfig')|raw }}
Also see included sample areas PrintColumnAttributeTable and PrintRowAttributeTable.
PDFreactor PDF Creation Helper
PDFreactor PDF Creation Helper allows you to integrate web2print functionality directly into the controller and creates a pdf response from a given HTML.
Usage in controller action:
<?php public function myAction() { //do some stuff... $reactor = new ReactorPDF(); return $reactor->createPDFResponse($renderedHTML); }
With url parameter html=1 pdf rendering is deactivated.
Create table of contents
/** * - include bundles/web2printtools/vendor/js/awesomizr.js * - include bundles/web2printtools/vendor/css/awesomizr.css */ Awesomizr.createTableOfContents({ insertiontarget: '#toc-wrapper', elements: ['h1','h2'], container: {tag: 'ul', addClass: 'toc'}, line: {tag: 'li'}, disabledocumenttitle: true, toctitle: ' ', text: function (elem) { return elem.textContent; } });
See example: toc.js See full documentation and examples: pdfreactor-manual
Running with Pimcore >= 11.0
If you are using or upgrading to pimcore 11, then please make sure that the pimcore/admin-ui-classic-bundle
bundle is installed.
composer require pimcore/admin-ui-classic-bundle
Running with Pimcore < 5.4
With Pimcore 5.4 the location of static Pimcore files like icons has changed. In order to make this bundle work
with Pimcore < 5.4, please add following rewrite rule to your .htaccess
.
# rewrite rule for pre pimcore 5.4 core static files
RewriteRule ^bundles/pimcoreadmin/(.*) /pimcore/static6/$1 [PT,L]
Migration from Pimcore 4
- change table name from
plugin_web2print_favorite_outputdefinitions
tobundle_web2print_favorite_outputdefinitions
RENAME TABLE plugin_web2print_favorite_outputdefinitions TO bundle_web2print_favorite_outputdefinitions;
- changed namespace from
Web2Print
toWeb2PrintToolsBundle
- renamed permission from
plugin_web2print_favourite_output_channels' to
web2print_web2print_favourite_output_channels`
UPDATE users_permission_definitions SET `key` = REPLACE(`key`, 'plugin_web2print_favourite_output_channels', 'web2print_web2print_favourite_output_channels'); UPDATE users SET permissions = REPLACE(`permissions`, 'plugin_web2print_favourite_output_channels', 'web2print_web2print_favourite_output_channels');
- removed Custom Document Areas
- PDFReactor controller plugin replaced by PDFreactor PDF Creation Helper