19 declare(strict_types=1);
42 return [
'question_titles',
'participants',
'statistics',
'arr_filter',
'datasets',
'test'];
49 protected array $participants
65 $this->question_titles[$question_id] = $question_title;
78 if (array_key_exists($question_id, $this->question_titles)) {
79 return $this->question_titles[$question_id];
87 $finishedParticipants = 0;
89 foreach ($this->participants as $active_id => $participant) {
90 if (!$participant->isSubmitted()) {
94 $finishedParticipants++;
97 return $finishedParticipants;
105 if (is_array($this->arr_filter) && count($this->arr_filter) > 0) {
106 $filtered_participants = [];
110 if (array_key_exists(self::FILTER_BY_GROUP, $this->arr_filter)) {
112 $groupids = array_merge($groupids, $ids);
114 if (array_key_exists(self::FILTER_BY_COURSE, $this->arr_filter)) {
116 $courseids = array_merge($courseids, $ids);
118 foreach ($this->participants as $active_id => $participant) {
120 if (array_key_exists(self::FILTER_BY_NAME, $this->arr_filter)) {
121 if (!(strpos(strtolower($participant->getName()), strtolower((
string) $this->arr_filter[self::FILTER_BY_NAME])) !==
false)) {
126 if (array_key_exists(self::FILTER_BY_GROUP, $this->arr_filter)) {
128 $foundfilter =
false;
129 if (count(array_intersect($groupids, $groups))) {
138 if (array_key_exists(self::FILTER_BY_COURSE, $this->arr_filter)) {
140 $foundfilter =
false;
141 if (count(array_intersect($courseids, $courses))) {
150 if (array_key_exists(self::FILTER_BY_ACTIVE_ID, $this->arr_filter)) {
151 if ($active_id != $this->arr_filter[self::FILTER_BY_ACTIVE_ID]) {
157 $filtered_participants[$active_id] = $participant;
160 return $filtered_participants;
162 return $this->participants;
168 $this->arr_filter = [];
171 public function setFilter(
string $by,
string $text): void
175 [self::FILTER_BY_ACTIVE_ID, self::FILTER_BY_NAME, self::FILTER_BY_COURSE, self::FILTER_BY_GROUP],
178 $this->arr_filter = [$by => $text];
189 $this->participants[$active_id] = $participant;
194 return $this->participants[$active_id] ??
null;
199 return array_key_exists($active_id, $this->participants);
204 unset($this->participants[$active_id]);
209 if ($this->statistics ===
null) {
217 return array_keys($this->participants);
getQuestionTitle(?int $question_id)
getTotalFinishedParticipants()
setFilter(string $by, string $text)
removeParticipant($active_id)
const FILTER_BY_ACTIVE_ID
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
participantExists($active_id)
static _getIdsForTitle(string $title, string $type='', bool $partial_match=false)
__construct(protected array $participants)
addQuestionTitle(int $question_id, string $question_title)
getParticipant(int $active_id)
static _getMembershipByType(int $a_usr_id, array $a_type, bool $a_only_member_role=false)
get membership by type Get course or group membership
setDatasets(int $datasets)
setFilterArray(array $arr_filter)
addParticipant(int $active_id, ilTestEvaluationUserData $participant)