5 declare(strict_types=1);
66 $this->lng->loadLanguageModule(
'prg');
79 public function getHTML() :
string 82 foreach ($this->getUsersAssignments() as $assignments) {
86 $current = current($assignments);
92 $current_prg = $current->getStudyProgramme();
98 $current_prg_settings = $current_prg->getRawSettings();
101 $current_progress = $current->getRootProgress();
107 $current_progress->getCurrentAmountOfPoints()
110 $current_status = $current_progress->getStatus();
111 $validation_expires = $current_prg_settings->validationExpires();
112 $deadline = $current_prg_settings->getDeadlineSettings()->getDeadlineDate();
113 $restart_date = $current->getRestartDate();
117 $properties[] = $this->
fillStatus((
string) $current_status);
127 if ($validation_expires &&
$valid) {
129 } elseif (!$validation_expires &&
$valid) {
135 $items[] = $this->
buildItem($current->getStudyProgramme(), $properties);
138 if (count($items) == 0) {
142 $group[] = $this->factory->item()->group(
"", $items);
143 $panel = $this->factory->panel()->listing()->standard($this->lng->txt(
"dash_studyprogramme"), $group);
145 return $this->renderer->render($panel);
154 return in_array($current_status, $status);
162 return in_array($current_status, $status);
168 if (!is_null($value)) {
170 $value->format(
'Y-m-d'),
176 $this->
txt(
'prg_dash_label_valid') => $date_string
183 $this->
txt(
'prg_dash_label_valid') => $this->
txt(
'no')
190 $this->
txt(
'prg_dash_label_valid') => $this->
txt(
'yes')
196 $title = $value .
" " . $this->
txt(
'percentage');
198 $this->
txt(
'prg_dash_label_minimum') => $title
204 $title = $value .
" " . $this->
txt(
'percentage');
206 $this->
txt(
'prg_dash_label_gain') => $title
213 $this->
txt(
'prg_dash_label_status') => $this->
txt(
'prg_status_' . $status)
220 if (!is_null($value)) {
222 $value->format(
'Y-m-d'),
226 $ret[$this->
txt(
'prg_dash_label_finish_until')] = $date_string;
234 if (!is_null($value)) {
236 $value->format(
'Y-m-d'),
240 $ret[$this->
txt(
'prg_dash_label_restart_from')] = $date_string;
247 if (is_null($this->visible_on_pd_mode)) {
248 $this->visible_on_pd_mode =
265 return $this->access->checkAccess($permission,
"", $prg->getRefId(),
"prg", $prg->getId());
283 protected function getUsersAssignments() : array
287 return $assignments_db->getDashboardInstancesforUser($this->
user->getId());
290 protected function txt(
string $code) : string
292 return $this->lng->txt($code);
297 $minimum_percents = 0;
298 $current_percents = 0;
301 $minimum_percents = 100;
302 if ($current_points > 0) {
303 $current_percents = 100;
308 if (count($children) > 0) {
310 foreach ($children as $child) {
311 $max_points += $child->getPoints();
314 if ($max_points > 0) {
316 $minimum_percents = round((100 * $prg_points / $max_points), 2);
318 if ($current_points > 0) {
319 $current_percents = round((100 * $current_points / $max_points), 2);
335 $validation_date = $this->findValid($assignments);
338 !is_null($validation_date) && $validation_date->format(
"Y-m-d") > date(
"Y-m-d"),
348 protected function findValid(array $assignments)
355 foreach ($assignments as $key => $assignment) {
356 $progress = $assignment->getRootProgress();
357 if (in_array($progress->getStatus(), $status)) {
358 return $progress->getValidityOfQualification();
370 $title_btn = $this->factory->button()->shy($title, $link);
372 $max = $this->setting->get(
"rep_shorten_description_length");
373 if ($this->setting->get(
"rep_shorten_description") && $max) {
377 $icon = $this->factory->symbol()->icon()->standard(
'prg', $title,
'medium');
378 return $this->factory->item()->standard($title_btn)
379 ->withProperties(array_merge(...$properties))
380 ->withDescription($description)
381 ->withLeadIcon($icon)
387 $this->ctrl->setParameterByClass(
388 ilObjStudyProgrammeGUI::class,
392 $link = $this->ctrl->getLinkTargetByClass(
394 ilRepositoryGUI::class,
395 ilObjStudyProgrammeGUI::class,
398 $this->ctrl->setParameterByClass(
399 ilObjStudyProgrammeGUI::class,
const SETTING_VISIBLE_ON_PD_ALLWAYS
This class provides processing control methods.
static shortenText( $a_str, $a_len, $a_dots=false, $a_next_blank=false, $a_keep_extension=false)
shorten a string to given length.
fillMinimumCompletion(float $value)
fillCurrentCompletion(float $value)
Class ChatMainBarProvider .
getStudyProgramme()
Get the program node where this assignment was made.
fillValidUntil(DateTime $value=null)
fillFinishUntil(DateTime $value=null)
calculatePercent(ilObjStudyProgramme $prg, int $current_points)
hasPermission(ilStudyProgrammeUserAssignment $assignment, string $permission)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
hasLPChildren()
Does this StudyProgramme has leafs?
isCompleted(int $current_status)
const SETTING_VISIBLE_ON_PD_READ
__construct(ilLanguage $lng, ilObjUser $user, ilAccess $access, ilSetting $setting, ILIAS\UI\Factory $factory, ILIAS\UI\Renderer $renderer, ilCtrl $ctrl, ilLogger $log)
getDefaultTargetUrl(int $prg_ref_id)
getTitle()
get object title public
findValidationValues(array $assignments)
isInProgress(int $current_status)
const SETTING_VISIBLE_ON_PD
isReadable(ilStudyProgrammeUserAssignment $assignment)
fillStatus(string $status)
fillRestartFrom(DateTime $value=null)
getLongDescription()
get object long description (stored in object_description)
getRefId()
get reference id public
getPoints()
Get the amount of points.
Component logger with individual log levels by component id.
buildItem(ilObjStudyProgramme $prg, array $properties)
Represents one assignment of a user to a study programme.