Skip to content

Commit

Permalink
[Docs] Fix Links (#24)
Browse files Browse the repository at this point in the history
* [Docs] Fix Links

* Update 90_Web2Print_Extending_Config_for_PDFX_conformance.md
  • Loading branch information
fashxp authored May 12, 2023
1 parent 2e79196 commit b31e54b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions doc/01_Doc_Types_and_Available_Processors.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ This bundle introduces 2 new document types:

| Type | Description |
|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [PrintPage](./doc/02_Print_Documents.md#printpage) | Like pages, but specialized for print (PDF preview, rendering options, ...) |
| [PrintContainer](./doc/02_Print_Documents.md#printcontainer) | Organizing print pages in chapters and render them all together. |
| [PrintPage](./02_Print_Documents.md#printpage) | Like pages, but specialized for print (PDF preview, rendering options, ...) |
| [PrintContainer](./02_Print_Documents.md#printcontainer) | Organizing print pages in chapters and render them all together. |

## Available PDF Processors

Expand All @@ -15,4 +15,4 @@ This bundle introduces 2 new document types:
| [Gotenberg](https://gotenberg.dev/) | A Docker service with Chromium and LibreOffice support |
| [PDF Reactor](https://www.pdfreactor.com/) | A REST/SOAP solution, please visit the official website for further information |

> For details on how to install and configure these processors, please see [Additional Tools Installation](https://github.com/pimcore/pimcore/blob/11.x/doc/23_Installation_and_Upgrade/03_System_Setup_and_Hosting/06_Additional_Tools_Installation.md) page in the Core.
> For details on how to install and configure these processors, please see [Additional Tools Installation](https://pimcore.com/docs/platform/Pimcore/Installation_and_Upgrade/System_Setup_and_Hosting/Additional_Tools_Installation) page in the Core.
6 changes: 3 additions & 3 deletions doc/90_Web2Print_Extending_Config_for_PDFX_conformance.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ creating the file.
**Solution**

To do so, Pimcore provides two events:
- [`PRINT_MODIFY_PROCESSING_OPTIONS`](../src/Event/DocumentEvents.php#L56):
- [`PRINT_MODIFY_PROCESSING_OPTIONS`](https://github.com/pimcore/web-to-print-bundle/blob/1.x/src/Event/DocumentEvents.php#L56):
Event to modify the processing options displayed in the Pimcore backend UI. For example add additional options like `AppendLog` and `My Additional ...`
in the screenshot above.

- [`PRINT_MODIFY_PROCESSING_CONFIG`](../src/Event/DocumentEvents.php#L73)
- [`PRINT_MODIFY_PROCESSING_CONFIG`](https://github.com/pimcore/web-to-print-bundle/blob/1.x/src/Event/DocumentEvents.php#L73)
Event to modify the configuration for the PDF processor when the PDF gets created. For example read values for additional
options and apply these values to the configuration of the PDF processor accordingly or do some other stuff.

Expand Down Expand Up @@ -115,4 +115,4 @@ class PDFConfigListener

## Gotenberg PDF Engines

When using Gotenberg, please also take in consideration https://github.com/gotenberg/gotenberg-php#pdf-format
When using Gotenberg, please also take in consideration https://github.com/gotenberg/gotenberg-php#pdf-format

0 comments on commit b31e54b

Please sign in to comment.