19 declare(strict_types=1);
34 if (null === $language) {
35 $language = $DIC->language();
40 if (null === $defaultPlaceholderDescriptionObject) {
43 $userDefinedFieldPlaceHolderDescriptionObject
46 $this->defaultPlaceHolderDescriptionObject = $defaultPlaceholderDescriptionObject;
48 $this->placeholder = $this->defaultPlaceHolderDescriptionObject->getPlaceholderDescriptions();
49 $this->placeholder[
'PRG_TITLE'] = $this->
language->txt(
'sp_certificate_title');
50 $this->placeholder[
'PRG_DESCRIPTION'] = $this->
language->txt(
'sp_certificate_description');
51 $this->placeholder[
'PRG_TYPE'] = $this->
language->txt(
'sp_certificate_type');
52 $this->placeholder[
'PRG_POINTS'] = $this->
language->txt(
'sp_certificate_points');
53 $this->placeholder[
'PRG_COMPLETION_DATE'] = $this->
language->txt(
'sp_certificate_completion_date');
54 $this->placeholder[
'PRG_EXPIRES_AT'] = $this->
language->txt(
'sp_certificate_progress_expires_at');
65 if (null === $template) {
66 $template =
new ilTemplate(
'tpl.default_description.html',
true,
true,
'Services/Certificate');
69 $template->setVariable(
"PLACEHOLDER_INTRODUCTION", $this->
language->txt(
'certificate_ph_introduction'));
71 $template->setCurrentBlock(
"items");
72 foreach ($this->placeholder as
$id => $caption) {
73 $template->setVariable(
"ID",
$id);
74 $template->setVariable(
"TXT", $caption);
75 $template->parseCurrentBlock();
78 return $template->get();
ilDefaultPlaceholderDescription $defaultPlaceHolderDescriptionObject
loadLanguageModule(string $a_module)
Load language module.
createPlaceholderHtmlDescription(?ilTemplate $template=null)
This methods MUST return an array containing an array with the the description as array value...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getPlaceholderDescriptions()
This method MUST return an array containing an array with the the description as array value...
Collection of basic placeholder values that can be used.
__construct(?ilDefaultPlaceholderDescription $defaultPlaceholderDescriptionObject=null, ?ilLanguage $language=null, ?ilUserDefinedFieldsPlaceholderDescription $userDefinedFieldPlaceHolderDescriptionObject=null)