71 $this->time = $a_time;
72 $this->ass_id = $a_ass->
getId();
73 $this->user_id = $a_user->
getId();
74 $this->member_id = $a_user->
getId();
77 $this->assignment = $a_ass;
80 $this->is_team =
false;
82 if ($a_team->getId()) {
83 $this->member_id = $a_team->
getId();
84 $this->team_id = $a_team->getId();
85 $this->is_team =
true;
99 $lng = $DIC->language();
100 $user = ($a_user_id > 0)
106 $member_id = $user->getId();
111 if ($team->getId()) {
112 $member_id = $team->getId();
120 return self::getInstance($ass, $user, $idl, time(), $lng, $team);
134 return new self($a_ass, $a_user, $a_idl, $a_time,
$lng, $a_team);
144 return $this->assignment->getStartTime();
162 return $this->idl->getStartingTimestamp();
169 return !$this->assignment->notStartedYet();
179 $calculated_deadline = 0;
181 if ($this->idl->getStartingTimestamp() && $this->assignment->getRelativeDeadline()) {
182 $calculated_deadline = $this->idl->getStartingTimestamp() + ($this->assignment->getRelativeDeadline() * 24 * 60 * 60);
184 if ($this->assignment->getRelDeadlineLastSubmission() > 0 &&
185 $calculated_deadline > $this->assignment->getRelDeadlineLastSubmission()) {
186 $calculated_deadline = $this->assignment->getRelDeadlineLastSubmission();
189 return $calculated_deadline;
195 return $this->assignment->getRelativeDeadline();
203 return $this->assignment->getRelDeadlineLastSubmission();
223 $dl = $this->idl->getIndividualDeadline();
226 return max($this->assignment->getDeadline(), $dl);
263 if ($od && $od < time()) {
278 if ($official_deadline == 0) {
279 return $lng->
txt(
"exc_no_deadline_specified");
281 if ($official_deadline - $this->time <= 0) {
282 $time_str = $lng->
txt(
"exc_time_over_short");
293 return $this->idl->getIndividualDeadline();
315 return $this->assignment->getDeadline();
331 return "no deadline";
342 if ($this->assignment->getPeerReview() &&
343 $this->assignment->getPeerReviewDeadline()) {
344 return $this->assignment->getPeerReviewDeadline();
359 return "no peer review deadline";
380 if ($a_timestamp > 0) {
434 $global_subm_end = max($this->
getEffectiveDeadline(), $this->assignment->getLastPersonalDeadline());
436 if ($global_subm_end == 0) {
440 if ($this->time > $global_subm_end) {
457 if (!$this->assignment->getFeedbackFile()) {
465 $access = $this->assignment->afterCustomDate();
ilExcIndividualDeadline $idl
getCommonDeadlinePresentation()
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
exceededOfficialDeadline()
getOfficialDeadlinePresentation()
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceByUserId(int $a_assignment_id, int $a_user_id, bool $a_create_on_demand=false)
static getInstance(ilExAssignment $a_ass, ilObjUser $a_user, ilExcIndividualDeadline $a_idl, int $a_time, ilLanguage $lng, ilExAssignmentTeam $a_team=null)
Usually you should prefer to use getInstanceByIds.
int $member_id
either user id or team id, if this is a team assignment and the user is member of a team...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
hasSubmissionStarted()
Check if the submission phase has started for the current user (if the assignment is generally starte...
hasSubmissionEndedForAllUsers()
getGeneralStartPresentation()
getIndividualDeadlinePresentation()
static getInstanceByIds(int $a_ass_id, int $a_user_id=0)
getCalculatedDeadline()
Calculated deadline is only given, if a relative deadline is given and the user started the assignmen...
getLastSubmissionOfRelativeDeadline()
getRemainingTimePresentation()
Remaining time presentation (based on official deadline)
getOfficialDeadline()
Get official deadline (individual deadline, fixed deadline or calculated deadline (using relative dea...
const FEEDBACK_DATE_DEADLINE
isGlobalFeedbackFileAccessible(ilExSubmission $submission)
getIndividualDeadlineObject()
getPeerReviewDeadlinePresentation()
__construct(ilExAssignment $a_ass, ilObjUser $a_user, ilExcIndividualDeadline $a_idl, int $a_time, ilLanguage $lng, ilExAssignmentTeam $a_team=null)
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...
const FEEDBACK_DATE_CUSTOM
getTimePresentation($a_timestamp)
getLastSubmissionOfRelativeDeadlinePresentation()
ilExAssignment $assignment
getRelativeDeadlinePresentation()
static getInstance(int $a_ass_id, int $a_participant_id, bool $a_is_team=false)