ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
CoursePlaceholderDescription.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Course\Certificate;
22 
23 use ilLanguage;
24 use ilTemplate;
30 
35 {
38  private readonly ilLanguage $language;
39  private array $placeholder;
40 
41  public function __construct(
42  int $objectId,
43  ?ilDefaultPlaceholderDescription $defaultPlaceholderDescriptionObject = null,
44  ?ilLanguage $language = null,
45  ?ilUserDefinedFieldsPlaceholderDescription $userDefinedFieldPlaceHolderDescriptionObject = null,
46  ?ilObjectCustomUserFieldsPlaceholderDescription $customUserFieldsPlaceholderDescriptionObject = null
47  ) {
48  global $DIC;
49 
50  if (null === $language) {
51  $language = $DIC->language();
52  $language->loadLanguageModule('certificate');
53  }
54  $this->language = $language;
55 
56  if (null === $defaultPlaceholderDescriptionObject) {
57  $defaultPlaceholderDescriptionObject = new ilDefaultPlaceholderDescription(
58  $language,
59  $userDefinedFieldPlaceHolderDescriptionObject
60  );
61  }
62  $this->defaultPlaceHolderDescriptionObject = $defaultPlaceholderDescriptionObject;
63 
64  if (null === $customUserFieldsPlaceholderDescriptionObject) {
65  $customUserFieldsPlaceholderDescriptionObject = new ilObjectCustomUserFieldsPlaceholderDescription($objectId);
66  }
67  $this->customUserFieldsPlaceholderDescriptionObject = $customUserFieldsPlaceholderDescriptionObject;
68 
69  $customUserFieldsPlaceholderHtmlDescription = $this->customUserFieldsPlaceholderDescriptionObject->getPlaceholderDescriptions();
70  $defaultPlaceholderDescription = $this->defaultPlaceHolderDescriptionObject->getPlaceholderDescriptions();
71 
72  $this->placeholder = array_merge($defaultPlaceholderDescription, $customUserFieldsPlaceholderHtmlDescription);
73  $this->placeholder['COURSE_TITLE'] = $this->language->txt('crs_title');
74  $this->placeholder['DATE_COMPLETED'] = ilLegacyFormElementsUtil::prepareFormOutput(
75  $language->txt('certificate_ph_date_completed')
76  );
77  $this->placeholder['DATETIME_COMPLETED'] = ilLegacyFormElementsUtil::prepareFormOutput(
78  $language->txt('certificate_ph_datetime_completed')
79  );
80  }
81 
82  public function createPlaceholderHtmlDescription(?ilTemplate $template = null): string
83  {
84  if (null === $template) {
85  $template = new ilTemplate('tpl.default_description.html', true, true, 'components/ILIAS/Certificate');
86  }
87 
88  $template->setVariable('PLACEHOLDER_INTRODUCTION', $this->language->txt('certificate_ph_introduction'));
89 
90  $template->setCurrentBlock('items');
91  foreach ($this->placeholder as $id => $caption) {
92  $template->setVariable('ID', $id);
93  $template->setVariable('TXT', $caption);
94  $template->parseCurrentBlock();
95  }
96 
97  return $template->get();
98  }
99 
105  public function getPlaceholderDescriptions(): array
106  {
107  return $this->placeholder;
108  }
109 }
__construct(int $objectId, ?ilDefaultPlaceholderDescription $defaultPlaceholderDescriptionObject=null, ?ilLanguage $language=null, ?ilUserDefinedFieldsPlaceholderDescription $userDefinedFieldPlaceHolderDescriptionObject=null, ?ilObjectCustomUserFieldsPlaceholderDescription $customUserFieldsPlaceholderDescriptionObject=null)
readonly ilObjectCustomUserFieldsPlaceholderDescription $customUserFieldsPlaceholderDescriptionObject
readonly ilDefaultPlaceholderDescription $defaultPlaceHolderDescriptionObject
static prepareFormOutput($a_str, bool $a_strip=false)
getPlaceholderDescriptions()
This method MUST return an array containing an array with the description as array value...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
getPlaceholderDescriptions()
This method MUST return an array containing an array with the the description as array value...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
language()
description: > Example for rendring a language glyph.
Definition: language.php:41