Choose directory for savePrintable function

Created on 15 January 2018, about 7 years ago
Updated 18 September 2024, 7 months ago

The problem
When using the savePrintable function to save a pdf for instance, the files will always be saved in the root of your /files folder. This becomes very messy as soon as you have 100, 200 or a 1000 generated pdf's sitting there in your /files folder.

The solution
I patched the savePrintable function to include an extra parameter called $directory. With this parameter you can specify the directory you want to save your generated pdf's in inside the /files folder.

Usage

$print_engine = \Drupal::service('plugin.manager.entity_print.print_engine')->createSelectedInstance('pdf');
$print_builder = \Drupal::service('entity_print.print_builder');
$directory = 'invoices/';
$print_builder->savePrintable([$entity], $print_engine, 'public', FALSE, TRUE, $directory);
Feature request
Status

Needs work

Version

2.0

Component

Code

Created by

🇳🇱Netherlands boazpoolman

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.

  • Hi !
    I found that the patch choose_directory_for_saveprintable_function_8.patch of Boazpoolman not worked for my Drupal 9.5.11 version. So I corrected it be able to use it ! Thanks Boazpoolman.

    Here is how to use the savePrintable function for saving in a subdirectory :

            $print_engine = \Drupal::service('plugin.manager.entity_print.print_engine')->createSelectedInstance('pdf');
            $print_builder = \Drupal::service('entity_print.print_builder');
            
            $node = \Drupal::entityTypeManager()->getStorage('node')->load($MY_NODE_ID);
            
            // Create a subfolder in the private directory 
            // to save the bill pdf file
            $scheme_directory_pdf = 'private';
            $subdirectory_pdf = 'factures-pdf';
    
            $filename = 'my-bill-name.pdf';
    
            // Create the PDF file and save it in the subdirectory
            $pdfUrl = $print_builder->savePrintable([$node], $print_engine, $scheme_irectory_pdf, $filename, TRUE, $subdirectory_pdf);
    

    Thanks !

Production build 0.71.5 2024