35 protected \ilObjExercise
$exc;
39 protected \ilLanguage
$lng;
52 $this->exc_id = $this->exc->
getId();
53 $this->
user = (is_null($user))
57 $this->
lng = (is_null($lng))
65 public function canBeActivated():
bool 69 if ($ass->getPeerReview() || $ass->getAssignmentType()->usesTeams()) {
73 return !$this->hasAnySubmission();
81 public function getDeniedActivationReasons(): array
85 $has_peer_reviews =
false;
89 if ($ass->getPeerReview()) {
90 $has_peer_reviews =
true;
92 if ($ass->getAssignmentType()->usesTeams()) {
97 if ($this->hasAnySubmission()) {
98 $reasons[self::DENIED_SUBMISSIONS] = $lng->txt(
"exc_denied_has_submissions");
100 if ($has_peer_reviews) {
101 $reasons[self::DENIED_PEER_REVIEWS] = $lng->txt(
"exc_denied_has_peer_reviews");
104 $reasons[self::DENIED_TEAM_ASSIGNMENTS] = $lng->txt(
"exc_denied_has_team_assignments");
112 return !$this->hasAnySubmission();
124 if ($this->hasAnySubmission()) {
125 $reasons[self::DENIED_SUBMISSIONS] = $lng->txt(
"exc_denied_has_submissions");
143 return $this->exc->getNrMandatoryRandom();
146 protected function hasAnySubmission():
bool 150 if ($this->submission_repo->hasSubmissions($ass->getId())) {
163 $ass_of_user = $this->rand_ass_repo->getAssignmentsOfUser($this->
user->getId(),
$this->exc_id);
164 if (count($ass_of_user) == 0) {
179 return $this->rand_ass_repo->getAssignmentsOfUser($user_id, $this->exc_id);
187 $this->rand_ass_repo->saveAssignmentsOfUser(
188 $this->
user->getId(),
202 $ass_ids = array_map(
function (
$i) {
208 $j = rand(0, count($ass_ids) - 1);
209 $selected[] = current(array_splice($ass_ids, $j, 1));
getNumberOfMandatoryAssignments()
Stores info about random assignments for users in exercises.
loadLanguageModule(string $a_module)
Load language module.
Submission SubmissionRepositoryInterface $submission_repo
Submission repository Interface.
getMandatoryAssignmentsOfUser(int $user_id)
Get mandatory assignments of user.
const DENIED_PEER_REVIEWS
Manages random mandatory assignments of an exercise (business logic)
getAssignmentSelection()
Get random assignment selection.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const DENIED_TEAM_ASSIGNMENTS
RandomAssignmentsDBRepository $rand_ass_repo
getTotalNumberOfAssignments()
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...
static getInstancesByExercise(int $a_exc_id)
getDeniedDeactivationReasons()
Get reasons for denied deactivation.
isAssignmentVisible(int $ass_id, int $user_id)
Is assignment visible for user.
needsStart()
Needs current user to start the exercise (by selecting the random assignments)?
__construct(\ilObjExercise $exc, RandomAssignmentsDBRepository $rand_ass_repo, Submission\SubmissionRepositoryInterface $submission_repo, \ilObjUser $user=null, \ilLanguage $lng=null)