ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilCertificateLearningHistoryProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
29 {
31  private readonly ilCtrlInterface $ctrl;
32  private readonly ilSetting $certificateSettings;
33  protected Factory $uiFactory;
34  protected Renderer $uiRenderer;
36 
37  public function __construct(
38  int $user_id,
42  ?Container $dic = null,
43  ?ilUserCertificateRepository $userCertificateRepository = null,
44  ?ilCtrlInterface $ctrl = null,
45  ?ilSetting $certificateSettings = null,
46  ?Factory $uiFactory = null,
47  ?Renderer $uiRenderer = null,
48  ?ilCertificateUtilHelper $utilHelper = null
49  ) {
50  $lng->loadLanguageModule("cert");
51 
52  parent::__construct($user_id, $factory, $lng, $template);
53 
54  if (null === $dic) {
55  global $DIC;
56  $dic = $DIC;
57  }
58 
59  if (null === $userCertificateRepository) {
60  $database = $dic->database();
61  $looger = $dic->logger()->cert();
62  $userCertificateRepository = new ilUserCertificateRepository($database, $looger);
63  }
64  $this->userCertificateRepository = $userCertificateRepository;
65 
66  if (null === $ctrl) {
67  $ctrl = $dic->ctrl();
68  }
69  $this->ctrl = $ctrl;
70 
71  if (null === $certificateSettings) {
72  $certificateSettings = new ilSetting("certificate");
73  }
74  $this->certificateSettings = $certificateSettings;
75 
76  if (null === $uiFactory) {
77  $uiFactory = $dic->ui()->factory();
78  }
79  $this->uiFactory = $uiFactory;
80 
81  if (null === $uiRenderer) {
82  $uiRenderer = $dic->ui()->renderer();
83  }
84  $this->uiRenderer = $uiRenderer;
85 
86  if (null === $utilHelper) {
87  $utilHelper = new ilCertificateUtilHelper();
88  }
89  $this->utilHelper = $utilHelper;
90  }
91 
92  public function isActive(): bool
93  {
94  return (bool) $this->certificateSettings->get('active', '0');
95  }
96 
101  public function getEntries(int $ts_start, int $ts_end): array
102  {
103  $entries = [];
104 
105  $certificates = $this->userCertificateRepository->fetchActiveCertificatesInIntervalForPresentation(
106  $this->user_id,
107  $ts_start,
108  $ts_end
109  );
110 
111  foreach ($certificates as $certificate) {
112  $objectId = $certificate->getUserCertificate()->getObjId();
113 
114  $this->ctrl->setParameterByClass(
115  ilUserCertificateGUI::class,
116  'certificate_id',
117  $certificate->getUserCertificate()->getId()
118  );
119  $href = $this->ctrl->getLinkTargetByClass(
120  [
121  ilDashboardGUI::class,
122  ilAchievementsGUI::class,
123  ilUserCertificateGUI::class
124  ],
125  'download'
126  );
127  $this->ctrl->clearParametersByClass(ilUserCertificateGUI::class);
128 
129  $prefixTextWithLink = sprintf(
130  $this->lng->txt('certificate_achievement_sub_obj'),
131  $this->uiRenderer->render($this->uiFactory->link()->standard(
132  $this->getEmphasizedTitle($certificate->getObjectTitle()),
133  $href
134  ))
135  );
136 
137  $text = sprintf(
138  $this->lng->txt('certificate_achievement'),
139  $prefixTextWithLink
140  );
141 
142  $entries[] = new ilLearningHistoryEntry(
143  $text,
144  $text,
145  $this->utilHelper->getImagePath("standard/icon_cert.svg"),
146  $certificate->getUserCertificate()->getAcquiredTimestamp(),
147  $objectId
148  );
149  }
150 
151  return $entries;
152  }
153 
154  public function getName(): string
155  {
156  return $this->lng->txt('certificates');
157  }
158 }
loadLanguageModule(string $a_module)
Load language module.
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This is how the factory for UI elements looks.
Definition: Factory.php:37
readonly ilUserCertificateRepository $userCertificateRepository
global $DIC
Definition: shib_login.php:22
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...
__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)
$dic
Definition: result.php:31