ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TestPlaceholderDescription.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Test\Certificate;
22 
27 {
28  private readonly \ilLanguage $language;
29  private array $placeholder;
30 
31  public function __construct(
32  ?\ilDefaultPlaceholderDescription $defaultPlaceholderDescriptionObject = null,
33  ?\ilLanguage $language = null,
34  ?\ilUserDefinedFieldsPlaceholderDescription $userDefinedFieldPlaceHolderDescriptionObject = null
35  ) {
36  global $DIC;
37 
38  if (null === $language) {
39  $language = $DIC->language();
40  $language->loadLanguageModule('certificate');
41  }
42  $this->language = $language;
43 
44  if (null === $defaultPlaceholderDescriptionObject) {
45  $defaultPlaceholderDescriptionObject = new \ilDefaultPlaceholderDescription(
46  $language,
47  $userDefinedFieldPlaceHolderDescriptionObject
48  );
49  }
50  $this->placeholder = $defaultPlaceholderDescriptionObject->getPlaceholderDescriptions();
51 
52  $this->placeholder['RESULT_PASSED'] = \ilLegacyFormElementsUtil::prepareFormOutput(
53  $this->language->txt('certificate_var_result_passed')
54  );
55  $this->placeholder['RESULT_POINTS'] = \ilLegacyFormElementsUtil::prepareFormOutput(
56  $this->language->txt('certificate_var_result_points')
57  );
58  $this->placeholder['RESULT_PERCENT'] = \ilLegacyFormElementsUtil::prepareFormOutput(
59  $this->language->txt('certificate_var_result_percent')
60  );
61  $this->placeholder['MAX_POINTS'] = \ilLegacyFormElementsUtil::prepareFormOutput(
62  $this->language->txt('certificate_var_max_points')
63  );
64  $this->placeholder['RESULT_MARK_SHORT'] = \ilLegacyFormElementsUtil::prepareFormOutput(
65  $this->language->txt('certificate_var_result_mark_short')
66  );
67  $this->placeholder['RESULT_MARK_LONG'] = \ilLegacyFormElementsUtil::prepareFormOutput(
68  $this->language->txt('certificate_var_result_mark_long')
69  );
70  $this->placeholder['TEST_TITLE'] = \ilLegacyFormElementsUtil::prepareFormOutput(
71  $this->language->txt('certificate_ph_testtitle')
72  );
73  $this->placeholder['DATE_COMPLETED'] = \ilLegacyFormElementsUtil::prepareFormOutput(
74  $language->txt('certificate_ph_date_completed')
75  );
76  $this->placeholder['DATETIME_COMPLETED'] = \ilLegacyFormElementsUtil::prepareFormOutput(
77  $language->txt('certificate_ph_datetime_completed')
78  );
79  }
80 
85  public function createPlaceholderHtmlDescription(?\ilTemplate $template = null): string
86  {
87  if (null === $template) {
88  $template = new \ilTemplate('tpl.default_description.html', true, true, 'components/ILIAS/Certificate');
89  }
90 
91  $template->setVariable('PLACEHOLDER_INTRODUCTION', $this->language->txt('certificate_ph_introduction'));
92 
93  $template->setCurrentBlock('items');
94  foreach ($this->placeholder as $id => $caption) {
95  $template->setVariable('ID', $id);
96  $template->setVariable('TXT', $caption);
97  $template->parseCurrentBlock();
98  }
99 
100  return $template->get();
101  }
102 
108  public function getPlaceholderDescriptions(): array
109  {
110  return $this->placeholder;
111  }
112 }
__construct(?\ilDefaultPlaceholderDescription $defaultPlaceholderDescriptionObject=null, ?\ilLanguage $language=null, ?\ilUserDefinedFieldsPlaceholderDescription $userDefinedFieldPlaceHolderDescriptionObject=null)
static prepareFormOutput($a_str, bool $a_strip=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
createPlaceholderHtmlDescription(?\ilTemplate $template=null)
This methods MUST return an array containing an array with the the description as array value...
getPlaceholderDescriptions()
This method MUST return an array containing an array with 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