ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilCertificatePdfAction.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
27  private readonly ilErrorHandling $errorHandler;
28 
29  public function __construct(
30  private readonly ilPdfGenerator $pdfGenerator,
31  ?ilCertificateUtilHelper $ilUtilHelper = null,
32  private readonly string $translatedErrorText = '',
33  ?ilErrorHandling $errorHandler = null
34  ) {
35  if (null === $ilUtilHelper) {
36  $ilUtilHelper = new ilCertificateUtilHelper();
37  }
38  $this->ilUtilHelper = $ilUtilHelper;
39 
40  if (null === $errorHandler) {
41  global $DIC;
42  $errorHandler = $DIC['ilErr'];
43  }
44  $this->errorHandler = $errorHandler;
45  }
46 
47  public function createPDF(int $userId, int $objectId): string
48  {
49  return $this->pdfGenerator->generateCurrentActiveCertificate($userId, $objectId);
50  }
51 
52  public function downloadPdf(int $userId, int $objectId): string
53  {
54  try {
55  $pdfScalar = $this->createPDF($userId, $objectId);
56 
57  $fileName = $this->pdfGenerator->generateFileName($userId, $objectId);
58 
59  $this->ilUtilHelper->deliverData(
60  $pdfScalar,
61  $fileName,
62  'application/pdf'
63  );
64  } catch (ilException) {
65  $this->errorHandler->raiseError($this->translatedErrorText, $this->errorHandler->MESSAGE);
66  return '';
67  }
68 
69  return $pdfScalar;
70  }
71 }
readonly ilErrorHandling $errorHandler
readonly ilCertificateUtilHelper $ilUtilHelper
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
createPDF(int $userId, int $objectId)
__construct(private readonly ilPdfGenerator $pdfGenerator, ?ilCertificateUtilHelper $ilUtilHelper=null, private readonly string $translatedErrorText='', ?ilErrorHandling $errorHandler=null)
downloadPdf(int $userId, int $objectId)