3 declare(strict_types=1);
32 string $a_parent_cmd =
"",
37 $ilCtrl = $DIC->ctrl();
38 $database = $DIC->database();
39 $logger = $DIC->logger()->root();
41 if (null === $userCertificateRepository) {
55 $this->
setRowTemplate(
'tpl.il_test_verification_row.html',
'Modules/Test');
56 $this->
setFormAction($ilCtrl->getFormAction($a_parent_obj, $a_parent_cmd));
69 $certificateArray = $this->userCertificateRepository->fetchActiveCertificatesByTypeForPresentation(
75 foreach ($certificateArray as $certificate) {
77 'id' => $certificate->getUserCertificate()->getObjId(),
78 'title' => $certificate->getObjectTitle(),
86 protected function fillRow(array $a_set): void
89 $ilCtrl = $DIC[
'ilCtrl'];
91 $this->tpl->setVariable(
'TITLE', $a_set[
'title']);
92 $this->tpl->setVariable(
94 ($a_set[
'passed']) ? $this->
lng->txt(
'yes') : $this->
lng->txt(
'no')
97 if ($a_set[
'passed']) {
98 $ilCtrl->setParameter($this->parent_obj,
'tst_id', $a_set[
'id']);
99 $action = $ilCtrl->getLinkTarget($this->parent_obj,
'save');
100 $this->tpl->setVariable(
'URL_SELECT', $action);
101 $this->tpl->setVariable(
'TXT_SELECT', $this->
lng->txt(
'select'));
setFormAction(string $a_form_action, bool $a_multipart=false)
setDescription(string $a_val)
ilUserCertificateRepository $userCertificateRepository
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilObjTestVerificationGUI $a_parent_obj, string $a_parent_cmd="", ?ilUserCertificateRepository $userCertificateRepository=null)