19 declare(strict_types=1);
51 $this->
lng = $DIC->language();
61 $ass = $this->repo_assignment->getLatestAssignment($prg_obj_id, $this->usr_id);
63 $icon =
'page_editor/icon_pean.svg';
67 $progresses[] = $ass->getProgressTree();
70 $in_progress = array_filter($progresses, fn($pgs) => $pgs->isInProgress());
71 $accredited_or_completed = array_filter($progresses, fn($pgs) => $pgs->isSuccessful());
72 if (count($in_progress) === 0) {
73 $failed = array_filter($progresses, fn($pgs) => $pgs->isFailed());
75 if (count($accredited_or_completed) > 0) {
76 $instruction =
'pc_prgactionnote_no_actions_required';
78 if (count($failed) > 0 && count($accredited_or_completed) === 0) {
79 $instruction =
'pc_prgactionnote_no_actions_required';
80 $deadline = array_shift($failed)->getDeadline();
83 } elseif($accredited_or_completed) {
84 $instruction =
'pc_prgactionnote_no_actions_required';
86 $instruction =
'pc_prgactionnote_complete_content';
88 $in_progress_with_deadline = array_filter(
89 $in_progress_with_deadline,
90 fn($pgs) => $pgs->getDeadline()->format(
'Y-m-d') >= $now->format(
'Y-m-d')
92 if (count($in_progress_with_deadline) > 0) {
93 $deadline = array_shift($in_progress_with_deadline)->getDeadline();
96 if (!is_null($deadline)) {
98 $instruction =
'pc_prgactionnote_complete_content_with_deadline';
102 $instruction =
'pc_prgactionnote_no_actions_required';
105 $icon = $this->ui_renderer->render(
106 $this->ui_factory->symbol()->icon()->custom(
108 $this->
lng->txt($instruction)
112 $this->tpl->setVariable(
"HEADLINE", $this->
lng->txt(
'pc_prgactionnote_headline'));
113 $this->tpl->setVariable(
"ICON", $icon);
114 $this->tpl->setVariable(
"NOTE_TEXT", $this->
lng->txt($instruction) . $dealine_str);
115 return $this->tpl->get();
120 $progresses = array_filter($progresses, fn($pgs) => $pgs->getDeadline());
126 if ($a_dat === $b_dat) {
129 return ($a_dat < $b_dat) ? -1 : 1;
ilStudyProgrammeSettingsRepository $repo_settings
static getUserDateFormat(int $a_add_time=0, bool $a_for_parsing=false)
Parse current user setting into date/time format.
getNoteFor(int $prg_obj_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
A Progress is the status of a user on a single node of an assignment; it is unique by assignment_id:u...
__construct(UIFactory $ui_factory, Renderer $ui_renderer, ilLanguage $lng, ilCtrl $ctrl, ilTemplate $tpl, PRGAssignmentRepository $repo_assignment, ilStudyProgrammeSettingsRepository $repo_settings, int $usr_id)
PRGAssignmentRepository $repo_assignment
Covers the persistence of settings belonging to a study programme (SP).
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
sortByDeadline(array $progresses)
Builds PageContent "Note".