19 declare(strict_types=1);
31 string $certificatePath,
32 bool $hasAdditionalElements,
46 $hasAdditionalElements,
51 $placeholderDescriptionObject,
52 $DIC->ui()->factory(),
53 $DIC->ui()->renderer()
67 $form = $this->settingsFormFactory->createForm($certificateGUI);
70 $short_name->setRequired(
true);
72 $short_name->setSize(30);
74 $short_name_value = $this->setting->get(
75 'certificate_short_name_' . $this->
object->getId(),
79 $infoText = $this->
language->txt(
'certificate_short_name_description');
80 if ($short_name_value !==
'') {
81 $short_name->setInfo(str_replace(
87 $short_name->setInfo($infoText);
90 $form->addItem($short_name);
95 public function save(array $formFields): void
97 $this->setting->set(
'certificate_' . $this->
object->getId(), (string) ($formFields[
'certificate_enabled_scorm'] ??
'0'));
98 $this->setting->set(
'certificate_short_name_' . $this->
object->getId(), (string) ($formFields[
'short_name'] ??
''));
103 $formFields = $this->settingsFormFactory->fetchFormFieldData($content);
104 $formFields[
'certificate_enabled_scorm'] = $this->setting->get(
105 'certificate_' . $this->
object->getId(),
106 (string) ($formFields[
'certificate_enabled_scorm'] ??
'0')
108 $formFields[
'short_name'] = $this->setting->get(
109 'certificate_short_name_' . $this->
object->getId(),
110 (string) ($formFields[
'short_name'] ??
'')
static subStr(string $a_str, int $a_start, ?int $a_length=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
language()
description: > Example for rendring a language glyph.