3 declare(strict_types=1);
69 return count($this->member_records);
78 return current($this->member_records);
86 return key($this->member_records);
89 public function next(): void
92 next($this->member_records);
98 reset($this->member_records);
103 return $this->position <
count($this->member_records);
122 if (isset($record[self::FIELD_USR_ID])) {
124 !$this->
userExists((
int) $record[self::FIELD_USR_ID]) ||
131 $record[self::FIELD_LEARNING_PROGRESS],
132 array(self::LP_NOT_ATTEMPTED, self::LP_FAILED, self::LP_COMPLETED, self::LP_IN_PROGRESS)
148 return isset($this->member_records[$usr_id]);
172 $clone = clone $this;
173 $clone->member_records[$record[self::FIELD_USR_ID]] = $record;
185 $clone = clone $this;
195 self::FIELD_USR_ID => $usr->
getId(),
196 self::FIELD_RECORD => $this->iass->getSettings()->getRecordTemplate(),
197 self::FIELD_NOTIFY => 0,
200 self::FIELD_LOGIN => $usr->
getLogin(),
201 self::FIELD_LEARNING_PROGRESS => self::LP_NOT_ATTEMPTED,
202 self::FIELD_EXAMINER_ID => null,
203 self::FIELD_EXAMINER_FIRSTNAME => null,
204 self::FIELD_EXAMINER_LASTNAME => null,
205 self::FIELD_INTERNAL_NOTE => null,
206 self::FIELD_FILE_NAME => null,
207 self::FIELD_USER_VIEW_FILE =>
false,
208 self::FIELD_FINALIZED => 0,
209 self::FIELD_CHANGER_ID => null,
210 self::FIELD_CHANGER_FIRSTNAME => null,
211 self::FIELD_CHANGER_LASTNAME => null
220 $usr_id = $usr->
getId();
221 if (isset($this->member_records[$usr_id]) && (
string) $this->member_records[$usr_id][self::FIELD_FINALIZED] !==
"1") {
222 $clone = clone $this;
223 unset($clone->member_records[$usr->
getId()]);
234 $clone = clone $this;
236 $remove = array_diff($this->
membersIds(), $keep_users_ids);
237 foreach ($remove as
$id) {
238 unset($clone->member_records[$id]);
253 "read_learning_progress",
254 "read_learning_progress",
255 $this->referencedObject()->getRefId(),
269 return array_keys($this->member_records);
284 foreach ($this as $usr_id => $record) {
285 if (!$current->userAllreadyMemberByUsrId($usr_id)) {
290 foreach ($current as $usr_id => $record) {
const LP_STATUS_COMPLETED_NUM
__construct(ilObjIndividualAssessment $iass)
assignUserToMemberRole(ilObjUser $usr, ilObjIndividualAssessment $iass)
Assign a user to the member role at an Individual assessment.
deassignUserFromMemberRole(ilObjUser $usr, ilObjIndividualAssessment $iass)
Deasign a user from the member role at an Individual assessment.
userAllreadyMember(ilObjUser $usr)
Check if a user is member of this.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const FIELD_INTERNAL_NOTE
current()
Iterator Methods.
referencedObject()
Get the Individual assessment object that is corresponding to this.
const LP_STATUS_IN_PROGRESS_NUM
withAdditionalRecord(array $record)
Clone this and add a record.
const FIELD_LEARNING_PROGRESS
Interface ilOrgUnitPositionAndRBACAccessHandler Provides access checks due to a users OrgUnit-Positio...
recordOK(array $record)
Check the validity of a record before adding it to this.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildNewRecordOfUser(ilObjUser $usr)
const FIELD_CHANGER_FIRSTNAME
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const FIELD_USER_VIEW_FILE
withoutPresentUser(ilObjUser $usr)
Clone this and remove record corresponding to user.
filterUserIdsByRbacOrPositionOfCurrentUser(string $rbac_perm, string $pos_perm, int $ref_id, array $user_ids)
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
const LP_ASSESSMENT_NOT_COMPLETED
const FIELD_EXAMINER_FIRSTNAME
count()
Countable Methods.
withOnlyUsersByIds(array $keep_users_ids)
Remove all users that do not exist in list of given ids.
const FIELD_NOTIFICATION_TS
const LP_STATUS_NOT_ATTEMPTED_NUM
withAccessHandling(ilOrgUnitPositionAndRBACAccessHandler $access_handler)
Get a collection like this, but only including users that are visible according to the supplied acces...
withAdditionalUser(ilObjUser $usr)
Clone this and add a record created for user.
ilObjIndividualAssessment $iass
updateStorageAndRBAC(ilIndividualAssessmentMembersStorage $storage, IndividualAssessmentAccessHandler $access_handler)
Store the data to a persistent medium.
const FIELD_EXAMINER_LASTNAME
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
const FIELD_CHANGER_LASTNAME
userAllreadyMemberByUsrId($usr_id)
Check if a user with user_id is member of this.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
membersIds()
Get the ids of all the users being member in this iass.
const LP_STATUS_FAILED_NUM