peterbenke/pb-pdf

Pdf generation for various usages

Installs: 115

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 1

Open Issues: 1

Type:typo3-cms-extension

11.5.3 2023-07-28 08:32 UTC

This package is auto-updated.

Last update: 2024-03-28 09:55:49 UTC


README

1 Description

Pdf generation for various usages

2 Installation

Installation using Composer

The recommended way to install the extension is using composer.

Run the following command within your Composer based TYPO3 project:

composer require peterbenke/pb-pdf

Installation as extension from TYPO3 Extension Repository (TER)

Download and install the extension with the extension manager module.

3 Usage

Php file

<?php
namespace [YourVendor]\[YourExtension]\[...];


use PeterBenke\Pdf\Service\PdfService;
use TYPO3\CMS\Core\Utility\GeneralUtility;


class YourClass
{

  public function yourFunction()
  {
  
  
    $absoluteJobPdfPath = '/var/www/html/fileadmin/user_upload/your-pdf-file.pdf';
    $assign = [];
  
    // Create instance
  
    /** @var PdfService $pdfService */
    $pdfService = GeneralUtility::makeInstance(
        PdfService::class,
        'your_extension_key', // extension key
        '/Resources/Private/Templates/Pdf/your-template.html', // template path
        $absoluteJobPdfPath,  // absolute! pdf path to pdf file
        null,                 // tmp directory, if empty => '/tmp' will be set
        $assign               // optional assign array (fluid)
    );
    
    // Create pdf file
    
    try{
        $pdfService->create();
    }catch(Exception $e){
        echo $e->getMessage();
    }
    
  
  }

}

Template

<!DOCTYPE HTML>
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	<title>{title}</title>
	<link rel="stylesheet" type="text/css" href="[absolute_path_to_css_file]" />
</head>
<body>
...
</body>
</html>