5 declare(strict_types=1);
66 $this->lng->loadLanguageModule(
'prg');
83 if (!$this->progress_repository) {
95 if (!$this->assignment_repository) {
119 krsort($assignments);
121 $assignment = current($assignments);
131 $progress->getCurrentAmountOfPoints()
134 $current_status = $progress->getStatus();
135 $deadline = $progress->getDeadline();
136 $restart_date = $assignment->getRestartDate();
140 $properties[] = $this->
fillStatus((
string) $current_status);
142 if ($progress->isSuccessful()) {
145 $valid = $progress->hasValidQualification($now);
146 $validation_expiry_date = $progress->getValidityOfQualification();
149 if ($progress->isInProgress()) {
155 $items[] = $this->
buildItem($current_prg, $properties);
158 if (count($items) == 0) {
162 $group[] = $this->factory->item()->group(
"", $items);
163 $panel = $this->factory->panel()->listing()->standard($this->lng->txt(
"dash_studyprogramme"), $group);
165 return $this->renderer->render(
$panel);
175 return in_array($current_status, $status);
183 $validation = $this->
txt(
'no');
185 if ($valid && is_null($validation_expiry_date)) {
186 $validation = $this->
txt(
'yes');
188 if ($valid && !is_null($validation_expiry_date)) {
194 $this->
txt(
'prg_dash_label_valid') => $validation
200 $title = $value .
" " . $this->
txt(
'percentage');
202 $this->
txt(
'prg_dash_label_minimum') => $title
208 $title = $value .
" " . $this->
txt(
'percentage');
210 $this->
txt(
'prg_dash_label_gain') => $title
217 $this->
txt(
'prg_dash_label_status') => $this->
txt(
'prg_status_' . $status)
224 if (!is_null($value)) {
226 $value->format(
'Y-m-d'),
230 $ret[$this->
txt(
'prg_dash_label_finish_until')] = $date_string;
238 if (!is_null($value)) {
240 $value->format(
'Y-m-d'),
244 $ret[$this->
txt(
'prg_dash_label_restart_from')] = $date_string;
251 if (is_null($this->visible_on_pd_mode)) {
252 $this->visible_on_pd_mode =
273 return $this->access->checkAccess($permission,
"", $prg->getRefId(),
"prg", $prg->getId());
288 protected function txt(
string $code) : string
290 return $this->lng->txt($code);
295 $minimum_percents = 0;
296 $current_percents = 0;
299 $minimum_percents = 100;
300 if ($current_points > 0) {
301 $current_percents = 100;
306 if (count($children) > 0) {
308 foreach ($children as $child) {
309 $max_points += $child->getPoints();
312 if ($max_points > 0) {
314 $minimum_percents = round((100 * $prg_points / $max_points), 2);
316 if ($current_points > 0) {
317 $current_percents = round((100 * $current_points / $max_points), 2);
333 $validation_date = $this->
findValid($assignments);
336 !is_null($validation_date) && $validation_date->format(
"Y-m-d") > date(
"Y-m-d"),
348 foreach ($assignments as $key => $assignment) {
350 $progress = $prg->getProgressForAssignment($assignment->getId());
352 if (in_array($progress->getStatus(), $status)) {
353 return $progress->getValidityOfQualification();
365 $title_btn = $this->factory->button()->shy($title, $link);
367 $max = $this->setting->get(
"rep_shorten_description_length");
368 if ($this->setting->get(
"rep_shorten_description") && $max) {
372 $icon = $this->factory->symbol()->icon()->standard(
'prg', $title,
'medium');
373 return $this->factory->item()->standard($title_btn)
374 ->withProperties(array_merge(...$properties))
375 ->withDescription($description)
376 ->withLeadIcon($icon)
382 $this->ctrl->setParameterByClass(
383 ilObjStudyProgrammeGUI::class,
387 $link = $this->ctrl->getLinkTargetByClass(
389 ilRepositoryGUI::class,
390 ilObjStudyProgrammeGUI::class,
393 $this->ctrl->setParameterByClass(
394 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)
fillValidation(?bool $valid, ?DateTimeImmutable $validation_expiry_date)
fillCurrentCompletion(float $value)
isReadable(ilStudyProgrammeAssignment $assignment)
if(isset($_FILES['img_file']) &&is_array($_FILES['img_file'])) $panel
Class ChatMainBarProvider .
hasPermission(ilStudyProgrammeAssignment $assignment, string $permission)
fillFinishUntil(DateTimeImmutable $value=null)
calculatePercent(ilObjStudyProgramme $prg, int $current_points)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
findValid(array $assignments)
static getInstanceByObjId($obj_id)
fillRestartFrom(DateTimeImmutable $value=null)
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
Represents one assignment of the user to a program tree.
findValidationValues(array $assignments)
isInProgress(int $current_status)
getAssignmentRepository()
const SETTING_VISIBLE_ON_PD
fillStatus(string $status)
Covers the persistence of settings belonging to a study programme (SP).
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)