79 return array(
'questionTitles',
'participants',
'statistics',
'arrFilter',
'datasets',
'test');
89 $this->participants = array();
90 $this->questionTitles = array();
131 SELECT usr_data.usr_id, 137 tst_active.submitted, 138 tst_active.last_finished_pass 139 FROM tst_pass_result, tst_active 141 ON tst_active.user_fi = usr_data.usr_id 142 WHERE tst_active.active_id = tst_pass_result.active_fi 143 AND tst_active.test_fi = %s 144 ORDER BY usr_data.lastname, 146 tst_pass_result.active_fi, 147 tst_pass_result.pass, 148 tst_pass_result.tstamp 151 $result = $DIC->database()->queryF(
154 array($this->
getTest()->getTestId())
159 while ($row = $DIC->database()->fetchAssoc($result)) {
172 include_once
"./Modules/Test/classes/class.ilTestEvaluationPassData.php";
173 include_once
"./Modules/Test/classes/class.ilTestEvaluationUserData.php";
175 $this->participants = array();
181 foreach ($this->
loadRows() as $row) {
190 $this->
getTest()->buildName($row[
"usr_id"], $row[
"firstname"], $row[
"lastname"], $row[
"title"])
193 $this->
getParticipant($row[
"active_fi"])->setLogin($row[
"login"]);
195 $this->
getParticipant($row[
"active_fi"])->setUserID($row[
"usr_id"]);
197 $this->
getParticipant($row[
"active_fi"])->setSubmitted($row[
'submitted']);
199 $this->
getParticipant($row[
"active_fi"])->setLastFinishedPass($row[
'last_finished_pass']);
202 if (!is_object($this->
getParticipant($row[
"active_fi"])->getPass($row[
"pass"]))) {
204 $pass->setPass($row[
"pass"]);
205 $this->
getParticipant($row[
"active_fi"])->addPass($row[
"pass"], $pass);
208 $this->
getParticipant($row[
"active_fi"])->getPass($row[
"pass"])->setReachedPoints((
float) $row[
"points"]);
209 $this->
getParticipant($row[
"active_fi"])->getPass($row[
"pass"])->setObligationsAnswered($row[
"obligations_answered"]);
211 if ($row[
"questioncount"] == 0) {
213 $this->
getParticipant($row[
"active_fi"])->getPass($row[
"pass"])->setMaxPoints(
$data[
'points']);
214 $this->
getParticipant($row[
"active_fi"])->getPass($row[
"pass"])->setQuestionCount(
$data[
'count']);
216 $this->
getParticipant($row[
"active_fi"])->getPass($row[
"pass"])->setMaxPoints($row[
"maxpoints"]);
217 $this->
getParticipant($row[
"active_fi"])->getPass($row[
"pass"])->setQuestionCount($row[
"questioncount"]);
220 $this->
getParticipant($row[
"active_fi"])->getPass($row[
"pass"])->setNrOfAnsweredQuestions($row[
"answeredquestions"]);
221 $this->
getParticipant($row[
"active_fi"])->getPass($row[
"pass"])->setWorkingTime($row[
"workingtime"]);
222 $this->
getParticipant($row[
"active_fi"])->getPass($row[
"pass"])->setExamId((
string) $row[
"exam_id"]);
224 $this->
getParticipant($row[
'active_fi'])->getPass($row[
'pass'])->setRequestedHintsCount($row[
'hint_count']);
225 $this->
getParticipant($row[
'active_fi'])->getPass($row[
'pass'])->setDeductedHintPoints($row[
'hint_points']);
236 $this->test = &
$test;
251 $this->questionTitles[$question_id] = $question_title;
261 if (array_key_exists($question_id, $this->questionTitles)) {
262 return $this->questionTitles[$question_id];
270 include_once
"./Modules/Test/classes/class.ilTestStatistics.php";
276 $finishedParticipants = 0;
278 foreach ($this->participants as $active_id => $participant) {
279 if (!$participant->isSubmitted()) {
283 $finishedParticipants++;
286 return $finishedParticipants;
291 if (is_array($this->arrFilter) && count($this->arrFilter) > 0) {
292 $filtered_participants = [];
296 if (array_key_exists(
'group', $this->arrFilter)) {
298 $groupids = array_merge($groupids, $ids);
300 if (array_key_exists(
'course', $this->arrFilter)) {
302 $courseids = array_merge($courseids, $ids);
304 foreach ($this->participants as $active_id => $participant) {
306 if (array_key_exists(
'name', $this->arrFilter)) {
307 if (!(strpos(strtolower($participant->getName()), strtolower((
string) $this->arrFilter[
'name'])) !==
false)) {
312 if (array_key_exists(
'group', $this->arrFilter)) {
314 $foundfilter =
false;
315 if (count(array_intersect($groupids, $groups))) {
324 if (array_key_exists(
'course', $this->arrFilter)) {
326 $foundfilter =
false;
327 if (count(array_intersect($courseids, $courses))) {
336 if (array_key_exists(
'active_id', $this->arrFilter)) {
337 if ($active_id != $this->arrFilter[
'active_id']) {
343 $filtered_participants[$active_id] = $participant;
346 return $filtered_participants;
354 $this->arrFilter = array();
365 $this->arrFilter = array($by => $text);
380 $this->participants[$active_id] = $participant;
389 return $this->participants[$active_id];
394 return array_key_exists($active_id, $this->participants);
399 unset($this->participants[$active_id]);
409 return array_keys($this->participants);
getTotalFinishedParticipants()
checkParticipantAccess($activeId)
$accessFilteredParticipantList
removeParticipant($active_id)
addQuestionTitle($question_id, $question_title)
setAccessFilteredParticipantList($accessFilteredParticipantList)
__construct(ilObjTest $test=null)
Constructor.
getAccessFilteredParticipantList()
static _getQuestionCountAndPointsForPassOfParticipant($active_id, $pass)
participantExists($active_id)
getQuestionTitle($question_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getIdsForTitle(string $title, string $type='', bool $partial_match=false)
addParticipant($active_id, $participant)
static _getMembershipByType(int $a_usr_id, array $a_type, bool $a_only_member_role=false)
get membership by type Get course or group membership
getParticipant($active_id)
setFilterArray($arrFilter)