3 declare(strict_types=1);
43 $this->
lng->loadLanguageModule(
'prg');
44 $this->
lng->loadLanguageModule(
'certificate');
57 $this->user_table->disablePermissionCheck(
true);
58 $rows = $this->user_table->fetchSingleUserRootAssignments($this->usr_id);
60 foreach (
$rows as $row) {
66 $min = $row->getPointsRequired();
67 $max = $row->getPointsReachable();
68 $cur = $row->getPointsCurrent();
69 $required_string = $min;
70 if ((
float)$max < (
float)$min) {
71 $required_string .=
' ' . $this->
txt(
'prg_dash_label_unreachable') .
' (' . $max .
')';
75 [$this->
txt(
'prg_dash_label_minimum') => $required_string],
76 [$this->
txt(
'prg_dash_label_gain') => $cur],
77 [$this->
txt(
'prg_dash_label_status') => $row->getStatus()],
81 $validity = $row->getExpiryDate() ? $row->getExpiryDate() : $row->getValidity();
82 $properties[] = [$this->
txt(
'prg_dash_label_valid') => $validity];
84 $properties[] = [$this->
txt(
'prg_dash_label_finish_until') =>$row->getDeadline()];
88 if ($validator->isCertificateDownloadable($row->getUsrId(), $row->getNodeId())) {
89 $cert_url =
"ilias.php?baseClass=ilRepositoryGUI&ref_id=" . $prg->getRefId() .
"&cmd=deliverCertificate";
90 $cert_link = $this->factory->link()->standard($this->
txt(
'download_certificate'), $cert_url);
91 $properties[] = [$this->
txt(
'certificate') => $this->renderer->render($cert_link)];
94 $items[] = $this->
buildItem($prg, $properties);
97 if (count($items) === 0) {
100 $group[] = $this->factory->item()->group(
"", $items);
101 $panel = $this->factory->panel()->listing()->standard($this->
lng->txt(
"dash_studyprogramme"), $group);
103 return $this->renderer->render(
$panel);
108 if (is_null($this->visible_on_pd_mode)) {
109 $this->visible_on_pd_mode =
126 protected function txt(
string $code): string
128 return $this->
lng->txt($code);
137 $title_btn = $this->factory->button()->shy($title, $link);
139 $max = (
int) $this->setting->get(
"rep_shorten_description_length");
140 if ($this->setting->get(
"rep_shorten_description") && $max !== 0) {
144 $icon = $this->factory->symbol()->icon()->standard(
'prg', $title,
'medium');
145 return $this->factory->item()->standard($title_btn)
146 ->withProperties(array_merge(...$properties))
147 ->withDescription($description)
148 ->withLeadIcon($icon)
154 $this->
ctrl->setParameterByClass(
155 ilObjStudyProgrammeGUI::class,
159 $link = $this->
ctrl->getLinkTargetByClass(
161 ilRepositoryGUI::class,
162 ilObjStudyProgrammeGUI::class,
165 $this->
ctrl->setParameterByClass(
166 ilObjStudyProgrammeGUI::class,
const SETTING_VISIBLE_ON_PD_ALLWAYS
ILIAS UI Factory $factory
ilStudyProgrammeUserTable $user_table
if(isset($_FILES['img_file']) &&is_array($_FILES['img_file'])) $panel
Class ChatMainBarProvider .
ILIAS UI Renderer $renderer
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(ilLanguage $lng, ilAccess $access, ilSetting $setting, ILIAS\UI\Factory $factory, ILIAS\UI\Renderer $renderer, ilCtrl $ctrl, ilStudyProgrammeUserTable $user_table, int $usr_id)
const SETTING_VISIBLE_ON_PD_READ
getDefaultTargetUrl(int $prg_ref_id)
string $visible_on_pd_mode
Validates if an active certificate is stored in the database and can be downloaded by the user...
const SETTING_VISIBLE_ON_PD
isReadable(ilObjStudyProgramme $prg)
static getInstanceByObjId(int $obj_id)
ilStudyProgrammeUserTable provides a flattened list of progresses at a programme-node.
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
getLongDescription()
get object long description (stored in object_description)
buildItem(ilObjStudyProgramme $prg, array $properties)