Add a PRE_RENDER event

Created on 6 October 2021, over 3 years ago
Updated 31 January 2025, 2 months ago

Problem/Motivation

There's currently a PRE_SEND event which allows modifications to the PDF after previous HTML has been rendered. If we use this event to add a cover page, the cover page appears at the end of the PDF due to the way the PHP library phpwkhtmltopdf adds HTML sequentially.

Adding a PRE_RENDER event would allow for adding a cover page at the beginning (and anything else which might make sense there).

Example event subscriber method using phpwkhtmltopdf:

public function preRender($event) {
  $printEngine = $event->getPrintEngine();
  $printObject = $printEngine->getPrintObject();

  // Grab HTML as a string from somewhere.
  $coverHtml = $this->generateCoverPage();

  // Set cover page.
  $printObject->addCover($coverHtml);
}
Feature request
Status

Needs work

Version

2.0

Component

Code

Created by

🇦🇺Australia imclean Tasmania

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇩🇪Germany drubb Sindelfingen

    Tested this patch with the mPDF engine, works great for e.g. adding headers and footers. Example:

    public function onEntityPrintPreRender(PreRenderPrintEvent $event): void {
        $printEngine = $event->getPrintEngine();
        if (!$printEngine || $printEngine->getPluginId() !== 'mpdf') {
          return;
        }
        /** @var \Drupal\entity_print\Plugin\EntityPrint\PrintEngine\Mpdf $printEngine */
        $printEngine->getPrintObject()->SetHTMLHeader('This is the header text...');
        $printEngine->getPrintObject()->SetHTMLFooter('This is the footer text...');
      }
    

    In many engines, headers and footers must be added before rendering anything, so that's a perfect use case IMHO.

    Small fix:

    The code used for dispatching the event in PrintBuilder.php is broken (wrong argument order). I've therefore attached a modified version of the patch from MR-13.

Production build 0.71.5 2024