19 declare(strict_types=1);
59 if (null === $userCertificateRepository) {
60 $database =
$dic->database();
61 $looger =
$dic->logger()->cert();
71 if (null === $certificateSettings) {
72 $certificateSettings =
new ilSetting(
"certificate");
76 if (null === $uiFactory) {
77 $uiFactory =
$dic->ui()->factory();
81 if (null === $uiRenderer) {
82 $uiRenderer =
$dic->ui()->renderer();
86 if (null === $utilHelper) {
94 return (
bool) $this->certificateSettings->get(
'active',
'0');
103 public function getEntries(
int $ts_start,
int $ts_end): array
107 $certificates = $this->userCertificateRepository->fetchActiveCertificatesInIntervalForPresentation(
113 foreach ($certificates as $certificate) {
114 $objectId = $certificate->getUserCertificate()->getObjId();
116 $this->
ctrl->setParameterByClass(
117 ilUserCertificateGUI::class,
119 $certificate->getUserCertificate()->getId()
121 $href = $this->
ctrl->getLinkTargetByClass(
123 ilDashboardGUI::class,
124 ilAchievementsGUI::class,
125 ilUserCertificateGUI::class
129 $this->
ctrl->clearParametersByClass(ilUserCertificateGUI::class);
131 $prefixTextWithLink = sprintf(
132 $this->
lng->txt(
'certificate_achievement_sub_obj'),
133 $this->uiRenderer->render($this->uiFactory->link()->standard(
140 $this->
lng->txt(
'certificate_achievement'),
147 $this->utilHelper->getImagePath(
"icon_cert.svg"),
148 $certificate->getUserCertificate()->getAcquiredTimestamp(),
158 return $this->
lng->txt(
'certificates');
An entity that renders components to a string output.
ilUserCertificateRepository $userCertificateRepository
loadLanguageModule(string $a_module)
Load language module.
Customizing of pimple-DIC for ILIAS.
ilLearningHistoryFactory $factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getEmphasizedTitle(string $title)
ilSetting $certificateSettings
getEntries(int $ts_start, int $ts_end)
Get entries.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Just a wrapper class to create Unit Test for other classes.
__construct(int $user_id, ilLearningHistoryFactory $factory, ilLanguage $lng, ?ilTemplate $template=null, ?Container $dic=null, ?ilUserCertificateRepository $userCertificateRepository=null, ?ilCtrlInterface $ctrl=null, ?ilSetting $certificateSettings=null, ?Factory $uiFactory=null, ?Renderer $uiRenderer=null, ?ilCertificateUtilHelper $utilHelper=null)
__construct(Container $dic, ilPlugin $plugin)
ilCertificateUtilHelper $utilHelper