44 $objectType = $userCertificate->getObjType();
46 $this->
language->loadLanguageModule(
'cert');
48 $verificationObjectType = $this->classMap->getVerificationTypeByType($objectType);
51 $verificationObject->setTitle($userCertificatePresentation->
getObjectTitle());
54 $objectId = $userCertificate->getObjId();
55 $userId = $userCertificate->getUserId();
59 $verificationObject->setProperty(
'issued_on', $issueDate);
68 $this->
language->txt(
'error_creating_certificate_pdf')
71 $certificateScalar = $pdfAction->
createPDF($userId, $objectId);
73 if ($certificateScalar) {
75 $verificationObject->create();
79 $fileName = $objectType .
'_' . $objectId .
'_' . $userId .
'.pdf';
81 if (file_put_contents(
$path . $fileName, $certificateScalar)) {
82 $verificationObject->setProperty(
'file', $fileName);
83 $verificationObject->update();
85 return $verificationObject;
88 $this->
logger->info(
'File could not be created');
89 $verificationObject->delete();
94 public function initStorage(
int $objectId,
string $subDirectory =
''): string
99 $path = $storage->getAbsolutePath() .
"/";
101 if ($subDirectory !==
'') {
102 $path .= $subDirectory .
"/";
104 if (!is_dir(
$path)) {
Class ilPdfGeneratorConstantsTest.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilLanguage $language, ilDBInterface $database, ilLogger $logger, ilCertificateVerificationClassMap $classMap)
ilCertificateVerificationClassMap $classMap
initStorage(int $objectId, string $subDirectory='')
createFile(ilUserCertificatePresentation $userCertificatePresentation)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Just a wrapper class to create Unit Test for other classes.
createPDF(int $userId, int $objectId)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...