202 $this->lng = $DIC[
'lng'];
203 $this->tpl = $DIC[
'tpl'];
204 $this->ctrl = $DIC[
'ilCtrl'];
205 $this->
ilias = $DIC[
'ilias'];
206 $this->tree = $DIC[
'tree'];
207 $this->access = $DIC[
'ilAccess'];
208 $this->toolbar = $DIC[
'ilToolbar'];
210 $this->lng->loadLanguageModule(
'certificate');
211 $this->lng->loadLanguageModule(
'cert');
212 $this->lng->loadLanguageModule(
"trac");
214 $this->ref_id = (int)
$_GET[
'ref_id'];
222 $logger = $DIC->logger()->cert();
233 $placeholderDescriptionObject
263 if (null === $upload) {
271 $this->backgroundImageUpload = $upload;
277 $this->templateRepository,
278 $DIC->filesystem()->web()
306 if (null === $imageFileService) {
308 $this->certificatePath,
315 $this->certificatePath,
332 $cmd = $this->ctrl->getCmd();
333 $next_class = $this->ctrl->getNextClass($this);
336 switch ($next_class) {
337 case 'ilpropertyformgui':
339 $this->ctrl->forwardCommand($form);
343 $ret = $this->$cmd();
362 $this->certificateEditor();
371 $this->previewAction->createPreviewPdf($this->objectId);
374 $this->certificateEditor();
383 $this->exportAction->export();
391 $this->backgroundImageDelete->deleteBackgroundImage(
'');
392 $this->certificateEditor();
402 $cgui->setFormAction($this->ctrl->getFormAction($this,
"certificateEditor"));
403 $cgui->setHeaderText($this->lng->txt(
"certificate_confirm_deletion_text"));
404 $cgui->setCancel($this->lng->txt(
"no"),
"certificateEditor");
405 $cgui->setConfirm($this->lng->txt(
"yes"),
"certificateDeleteConfirm");
407 $this->tpl->setContent($cgui->getHTML());
415 $template = $this->templateRepository->fetchCurrentlyUsedCertificate($this->objectId);
416 $templateId = $template->getId();
418 $this->deleteAction->delete($templateId, $this->objectId);
419 $this->ctrl->redirect($this,
"certificateEditor");
429 $form = $this->settingsFormFactory->createForm(
433 $form->setValuesByPost();
435 $request = $DIC->http()->request();
437 $formFields = $request->getParsedBody();
439 $this->tpl->setVariable(
'ADM_CONTENT', $form->getHTML());
441 $this->saveCertificate($form, $formFields, $this->objectId);
449 $this->certificateEditor();
463 $certificateTemplate = $this->templateRepository->fetchCurrentlyUsedCertificate($this->objectId);
465 $form = $this->settingsFormFactory->createForm(
471 $formFields[
'active'] = $certificateTemplate->isCurrentlyActive();
473 $form->setValuesByArray($formFields);
481 public function certificateEditor()
486 $messageBoxHtml =
'';
487 if ($enabledGlobalLearningProgress) {
488 $objectLearningProgressSettings =
new ilLPObjSettings($this->objectId);
489 $mode = $objectLearningProgressSettings->getMode();
496 $renderer = $DIC->ui()->renderer();
497 $messageBox = $DIC->ui()
500 ->info($this->lng->txt(
'learning_progress_deactivated'));
502 $messageBoxHtml = $renderer->render($messageBox);
503 $form->clearCommandButtons();
507 $formHtml = $form->getHTML();
509 $this->tpl->setVariable(
"ADM_CONTENT", $messageBoxHtml . $formHtml);
519 $previousCertificateTemplate = $this->templateRepository->fetchPreviousCertificate(
$objId);
520 $currentVersion = $previousCertificateTemplate->getVersion();
521 $nextVersion = $currentVersion + 1;
523 if (
$_POST[
"background_delete"]) {
524 $this->backgroundImageDelete->deleteBackgroundImage($currentVersion);
529 $this->settingsFormFactory->save($form_fields);
531 $templateValues = $this->placeholderDescriptionObject->getPlaceholderDescriptions();
534 $backgroundImagePath =
'';
535 $temporaryFileName = $_FILES[
'background'][
'tmp_name'];
536 if (strlen($temporaryFileName)) {
538 $backgroundImagePath = $this->backgroundImageUpload->uploadBackgroundImage(
544 $form->
getItemByPostVar(
'background')->setAlert($this->lng->txt(
"certificate_error_upload_bgimage"));
546 if (
false === $this->fileSystem->has($backgroundImagePath)) {
547 $form->
getItemByPostVar(
'background')->setAlert($this->lng->txt(
"certificate_error_upload_bgimage"));
548 $backgroundImagePath =
'';
551 if ($backgroundImagePath ===
'') {
552 if (
$_POST[
'background_delete'] || $previousCertificateTemplate->getBackgroundImagePath() ===
'') {
554 $backgroundImagePath = str_replace(
'[CLIENT_WEB_DIR]',
'', $globalBackgroundImagePath);
556 $backgroundImagePath = $previousCertificateTemplate->getBackgroundImagePath();
561 $cardThumbnailImagePath =
'';
562 $temporaryFileName = $_FILES[
'certificate_card_thumbnail_image'][
'tmp_name'];
563 if (strlen($temporaryFileName) && $this->fileUpload->hasUploads()) {
565 if (
false === $this->fileUpload->hasBeenProcessed()) {
566 $this->fileUpload->process();
570 $uploadResults = $this->fileUpload->getResults();
571 $pending_card_file = $form->
getInput(
'certificate_card_thumbnail_image');
572 $cardThumbnailFileName =
'card_thumbnail_image_' . $nextVersion .
'.svg';
573 if (isset($uploadResults[$temporaryFileName])) {
574 $result = $uploadResults[$temporaryFileName];
576 $this->fileUpload->moveOneFileTo(
578 $this->certificatePath,
579 \
ILIAS\FileUpload\Location::WEB,
580 $cardThumbnailFileName,
584 $cardThumbnailImagePath = $this->certificatePath . $cardThumbnailFileName;
586 } elseif ($pending_card_file !== null && !empty($pending_card_file)) {
587 $stream = $this->tmp_file_system->readStream(basename($pending_card_file[
'tmp_name']));
588 $this->fileSystem->writeStream($this->certificatePath .
'/' . $cardThumbnailFileName, $stream);
589 $cardThumbnailImagePath = $this->certificatePath . $cardThumbnailFileName;
591 throw new ilException($this->lng->txt(
'upload_error_file_not_found'));
594 $form->
getItemByPostVar(
'certificate_card_thumbnail_image')->setAlert($this->lng->txt(
"certificate_error_upload_ctimage"));
596 if (
false === $this->fileSystem->has($cardThumbnailImagePath)) {
597 $form->
getItemByPostVar(
'certificate_card_thumbnail_image')->setAlert($this->lng->txt(
"certificate_error_upload_ctimage"));
598 $cardThumbnailImagePath =
'';
601 if ($cardThumbnailImagePath ===
'' && !
$_POST[
'certificate_card_thumbnail_image_delete']) {
602 $cardThumbnailImagePath = $previousCertificateTemplate->getThumbnailImagePath();
605 $jsonEncodedTemplateValues = json_encode($templateValues);
607 $xslfo = $this->xlsFoParser->parse($form_fields);
609 $newHashValue =
hash(
613 $backgroundImagePath,
614 $jsonEncodedTemplateValues,
615 $cardThumbnailImagePath
619 $active = (bool) $form_fields[
'active'];
621 if ($newHashValue !== $previousCertificateTemplate->getCertificateHash()) {
627 $jsonEncodedTemplateValues,
632 $backgroundImagePath,
633 $cardThumbnailImagePath
636 $this->templateRepository->save($certificateTemplate);
637 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"),
true);
638 $this->ctrl->redirect($this,
"certificateEditor");
641 if ($previousCertificateTemplate->getId() !== null && $previousCertificateTemplate->isCurrentlyActive() !== $active) {
642 $this->templateRepository->updateActivity($previousCertificateTemplate, $active);
643 ilUtil::sendInfo($this->lng->txt(
'certificate_change_active_status'),
true);
644 $this->ctrl->redirect($this,
"certificateEditor");
648 $this->ctrl->redirect($this,
"certificateEditor");
656 $this->tpl->setVariable(
"ADM_CONTENT", $form->
getHTML());
666 $form_fields = $this->settingsFormFactory->fetchFormFieldData($certificate->
getCertificateContent());
671 $this->tpl->setVariable(
"ADM_CONTENT", $form->
getHTML());
682 $formats = $this->pageFormats->fetchPageFormats();
684 $formFieldArray = array(
695 return $formFieldArray;
697 return $this->settingsFormFactory->fetchFormFieldData($certificateTemplate->
getCertificateContent());
getCommand($cmd)
Retrieves the ilCtrl command.
certificateSave()
Saves the certificate.
const ILIAS_VERSION_NUMERIC
certificatePreview()
Creates a certificate preview.
const DEFAULT_MARGIN_BODY_TOP
Class ChatMainBarProvider .
static getBackgroundImagePath($asRelative=false)
Returns the filesystem path of the background image.
const DEFAULT_MARGIN_BODY_LEFT
executeCommand()
execute command
createFormatArray(ilCertificateTemplate $certificateTemplate)
certificateDeleteConfirm()
Deletes the certificate and all its data.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
static _enabledLearningProgress()
check wether learing progress is enabled or not
certificateExportFO()
Exports the certificate.
certificateImport()
Import a certificate from a ZIP archive.
certificateUpload()
Uploads the certificate.
GUI class to create PDF certificates.
redirection script todo: (a better solution should control the processing via a xml file) ...
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
static _lookupType($a_id, $a_reference=false)
lookup object type
certificateRemoveBackground()
Removes the background image of a certificate.
const DEFAULT_MARGIN_BODY_BOTTOM
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
const LP_MODE_DEACTIVATED
setTemplateContent(ilCertificateTemplate $certificate, ilPropertyFormGUI $form)
__construct(ilCertificatePlaceholderDescription $placeholderDescriptionObject, ilCertificatePlaceholderValues $placeholderValuesObject, $objectId, $certificatePath, ilCertificateFormRepository $settingsFormFactory=null, ilCertificateDeleteAction $deleteAction=null, ilCertificateTemplateRepository $templateRepository=null, ilPageFormats $pageFormats=null, ilXlsFoParser $xlsFoParser=null, ilFormFieldParser $formFieldParser=null, ilCertificateTemplateExportAction $exportAction=null, ilCertificateBackgroundImageUpload $upload=null, ilCertificateTemplatePreviewAction $previewAction=null, \ILIAS\FileUpload\FileUpload $fileUpload=null, ilSetting $settings=null, ilCertificateBackgroundImageDelete $backgroundImageDelete=null, \ILIAS\Filesystem\Filesystem $fileSystem=null, ilCertificateBackgroundImageFileService $imageFileService=null, \ILIAS\Filesystem\Filesystem $tmp_file_system=null)
const DEFAULT_MARGIN_BODY_RIGHT
certificateDelete()
Deletes the certificate and all its data.
$placeholderDescriptionObject
Class FlySystemFileAccessTest.
Confirmation screen class.