ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilCourseVerificationTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
22 
29 {
31  private Container $dic;
32 
33  public function __construct(
34  ilObjCourseVerificationGUI $a_parent_obj,
35  string $a_parent_cmd = '',
36  ?ilUserCertificateRepository $userCertificateRepository = null
37  ) {
38  global $DIC;
39 
40  $this->dic = $DIC;
41  $database = $DIC->database();
42  $logger = $DIC->logger()->root();
43 
44  if (null === $userCertificateRepository) {
45  $userCertificateRepository = new ilUserCertificateRepository($database, $logger);
46  }
47  $this->userCertificateRepository = $userCertificateRepository;
48 
49  parent::__construct($a_parent_obj, $a_parent_cmd);
50 
51  $this->addColumn($this->lng->txt('title'), 'title');
52  $this->addColumn($this->lng->txt('passed'), 'passed');
53  $this->addColumn($this->lng->txt('action'), '');
54 
55  $this->setTitle($this->lng->txt('crsv_create'));
56  $this->setDescription($this->lng->txt('crsv_create_info'));
57 
58  $this->setRowTemplate('tpl.crs_verification_row.html', 'components/ILIAS/Course');
59  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
60 
61  $this->getItems();
62  }
63 
64  protected function getItems(): void
65  {
66  $certificateArray = $this->userCertificateRepository->fetchActiveCertificatesByTypeForPresentation(
67  $this->dic->user()->getId(),
68  'crs'
69  );
70 
71  $data = [];
72  foreach ($certificateArray as $certificate) {
73  $data[] = [
74  'id' => $certificate->getUserCertificate()->getObjId(),
75  'title' => $certificate->getObjectTitle(),
76  'passed' => true
77  ];
78  }
79 
80  $this->setData($data);
81  }
82 
83  protected function fillRow(array $a_set): void
84  {
85  $this->dic->ctrl();
86 
87  $this->tpl->setVariable('TITLE', $a_set['title']);
88  $this->tpl->setVariable(
89  'PASSED',
90  ($a_set['passed']) ? $this->lng->txt('yes') : $this->lng->txt('no')
91  );
92 
93  if ($a_set['passed']) {
94  $this->ctrl->setParameter($this->parent_obj, 'crs_id', $a_set['id']);
95  $action = $this->ctrl->getLinkTarget($this->parent_obj, 'save');
96  $this->tpl->setVariable('URL_SELECT', $action);
97  $this->tpl->setVariable('TXT_SELECT', $this->lng->txt('select'));
98  }
99  }
100 }
setData(array $a_data)
setFormAction(string $a_form_action, bool $a_multipart=false)
List all completed course for current user.
setDescription(string $a_val)
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
ilUserCertificateRepository $userCertificateRepository
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(ilObjCourseVerificationGUI $a_parent_obj, string $a_parent_cmd='', ?ilUserCertificateRepository $userCertificateRepository=null)
GUI class for course verification.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__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)