19 declare(strict_types=1);
51 string $certificatePath,
52 bool $hasAdditionalElements,
67 $this->httpWrapper = $DIC->http()->wrapper();
78 $database = $DIC->database();
80 if (null === $logger) {
81 $logger = $logger = $DIC->logger()->cert();
84 if (null === $pageFormats) {
89 if (null === $formFieldParser) {
94 if (null === $importAction) {
98 $placeholderDescriptionObject,
100 $DIC->filesystem()->web()
105 if (null === $templateRepository) {
110 if (null === $filesystem) {
111 $filesystem = $DIC->filesystem()->web();
114 if (null === $backgroundImageFileService) {
120 $this->backGroundImageFileService = $backgroundImageFileService;
135 $certificateTemplate = $this->templateRepository->fetchCurrentlyUsedCertificate($this->objectId);
137 $command = $this->
ctrl->getCmd();
140 $form->setPreventDoubleSubmission(
false);
141 $form->setFormAction($this->
ctrl->getFormAction($certificateGUI));
142 $form->setTitle($this->
language->txt(
"cert_form_sec_availability"));
143 $form->setMultipart(
true);
144 $form->setTableWidth(
"100%");
145 $form->setId(
"certificate");
148 $form->addItem($active);
152 $import->setSuffixes([
"zip"]);
155 if (!empty($_FILES[
"certificate_import"][
"name"]) && $import->checkInput()) {
156 $result = $this->importAction->import(
157 $_FILES[
"certificate_import"][
"tmp_name"],
158 $_FILES[
"certificate_import"][
"name"]
160 if ($result ===
false) {
161 $import->setAlert($this->
language->txt(
"certificate_error_import"));
163 $this->
ctrl->redirect($certificateGUI,
"certificateEditor");
166 $form->addItem($import);
169 $formSection->setTitle($this->
language->txt(
"cert_form_sec_layout"));
170 $form->addItem($formSection);
173 $pageformats = $this->pageFormats->fetchPageFormats();
175 foreach ($pageformats as
$format) {
176 $option =
new ilRadioOption($format[
"name"], $format[
"value"]);
178 if (strcmp($format[
"value"],
"custom") === 0) {
180 $pageheight->setSize(6);
181 $pageheight->setValidationRegexp(
'/^(([1-9]+|([1-9]+[0]*[\.,]{0,1}[\d]+))|(0[\.,](0*[1-9]+[\d]*)))(cm|mm|in|pt|pc|px|em)$/is');
182 $pageheight->setInfo($this->
language->txt(
"certificate_unit_description"));
183 $pageheight->setRequired(
true);
184 $option->addSubItem($pageheight);
187 $pagewidth->setSize(6);
188 $pagewidth->setValidationRegexp(
'/^(([1-9]+|([1-9]+[0]*[\.,]{0,1}[\d]+))|(0[\.,](0*[1-9]+[\d]*)))(cm|mm|in|pt|pc|px|em)$/is');
189 $pagewidth->setInfo($this->
language->txt(
"certificate_unit_description"));
190 $pagewidth->setRequired(
true);
191 $option->addSubItem($pagewidth);
194 $pageformat->addOption($option);
197 $pageformat->setRequired(
true);
199 if (strcmp($command,
"certificateSave") === 0) {
200 $pageformat->checkInput();
203 $form->addItem($pageformat);
207 $bgimage->setUseCache(
false);
209 $bgimage->setAllowDeletion(
true);
210 if (!$this->backGroundImageFileService->hasBackgroundImage($certificateTemplate)) {
211 if ($this->global_certificate_settings->hasBackgroundImage()) {
214 $bgimage->setImage($imagePath);
215 $bgimage->setAllowDeletion(
false);
220 $thumbnail_path = $this->backGroundImageFileService->getBackgroundImageThumbPath();
222 if (!is_file($thumbnail_path)) {
224 $thumbnail_path =
CLIENT_WEB_DIR . $certificateTemplate->getBackgroundImagePath() .
'.thumb.jpg';
225 if (!is_file($thumbnail_path)) {
227 $thumbnail_path = $this->global_certificate_settings->getDefaultBackgroundImageThumbPath();
228 if (!is_file($thumbnail_path)) {
230 $thumbnail_path =
'';
233 $bgimage->setALlowDeletion(
false);
236 $bgimage->setImage($imagePath);
239 $form->addItem($bgimage);
242 $this->
language->txt(
'certificate_card_thumbnail_image'),
243 'certificate_card_thumbnail_image' 246 $thumbnailImage->setUseCache(
false);
247 $thumbnailImage->setSuffixes([
'svg']);
249 $allowThumbnailDeletion =
false;
251 $cardThumbnailImagePath = $certificateTemplate->getThumbnailImagePath();
252 if (
'' !== $cardThumbnailImagePath) {
253 $presentationThumbnailImagePath =
CLIENT_WEB_DIR . $cardThumbnailImagePath;
255 $allowThumbnailDeletion =
true;
258 $thumbnailImage->setAllowDeletion($allowThumbnailDeletion);
260 $form->addItem($thumbnailImage);
264 $rect->setUseUnits(
true);
265 $rect->setInfo($this->
language->txt(
"certificate_unit_description"));
267 if (strcmp($command,
"certificateSave") === 0) {
271 $form->addItem($rect);
275 $certificate->removePlugin(
'ilimgupload');
276 $certificate->setRequired(
true);
277 $certificate->setRows(20);
278 $certificate->setCols(80);
280 $placeholderHtmlDescription = $this->placeholderDescriptionObject->createPlaceholderHtmlDescription();
282 $placeholderDescriptionInHtml = $placeholderHtmlDescription;
284 $certificate->setInfo($placeholderDescriptionInHtml);
286 $certificate->setUseRte(
true,
'3.4.7');
301 $certificate->setRteTags($tags);
303 if (strcmp($command,
"certificateSave") === 0) {
304 $certificate->checkInput();
307 $form->addItem($certificate);
309 if (
true === $this->hasAdditionalElements) {
311 $formSection->setTitle($this->
language->txt(
"cert_form_sec_add_features"));
312 $form->addItem($formSection);
315 if ($this->
access->checkAccess(
318 $this->httpWrapper->query()->retrieve(
"ref_id", $this->
refinery->kindlyTo()->int())
320 if ($certificateTemplate->isCurrentlyActive()) {
321 $this->
toolbar->setFormAction($this->
ctrl->getFormAction($certificateGUI));
324 $preview->setCaption(
'certificate_preview');
325 $preview->setCommand(
'certificatePreview');
329 $export->setCaption(
'certificate_export');
330 $export->setCommand(
'certificateExportFO');
331 $this->
toolbar->addButtonInstance($export);
334 $delete->setCaption(
'delete');
335 $delete->setCommand(
'certificateDelete');
336 $this->
toolbar->addButtonInstance($delete);
338 $form->addCommandButton(
"certificateSave", $this->
language->txt(
"save"));
344 public function save(array $formFields): void
354 return $this->formFieldParser->fetchDefaultFormFields($content);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static setTokenMaxLifetimeInSeconds(int $token_max_lifetime_in_seconds)
Class ilObjCertificateSettings.
GUI class to create PDF certificates.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This class represents a text area property in a property form.
static signFile(string $path_to_file)
Class FlySystemFileAccessTest disabled disabled disabled.