19 declare(strict_types=1);
49 return [
'answeredQuestions',
'pass',
'nrOfAnsweredQuestions',
'reachedpoints',
50 'maxpoints',
'questioncount',
'workingtime',
'examId'];
60 $this->answeredQuestions = [];
125 if ($start_time !==
null) {
126 $this->start_time = new \DateTimeImmutable($start_time);
137 if ($last_access_time !==
null) {
138 $this->last_access_time = new \DateTimeImmutable($last_access_time);
170 float $reached_points,
172 ?
int $sequence =
null,
175 $this->answeredQuestions[] = [
176 'id' => $question_id,
177 'points' => round($max_points, 2),
178 'reached' => round($reached_points, 2),
179 'isAnswered' => $is_answered,
180 'sequence' => $sequence,
187 if (array_key_exists($index, $this->answeredQuestions)) {
188 return $this->answeredQuestions[$index];
196 foreach ($this->answeredQuestions as $question) {
197 if ($question[
'id'] == $question_id) {
206 return count($this->answeredQuestions);
241 if ($this->status_of_attempt) {
245 return StatusOfAttempt::FINISHED_BY_UNKNOWN;
int $nrOfAnsweredQuestions
setWorkingTime(int $workingtime)
A class defining marks for assessment test objects.
__construct()
Constructor.
float $deductedHintPoints
DateTimeImmutable $start_time
setLastAccessTime(?string $last_access_time)
setQuestionCount(int $questioncount)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setDeductedHintPoints(float $deductedHintPoints)
getReachedPointsInPercent()
setStartTime(?string $start_time)
setRequestedHintsCount(int $requestedHintsCount)
addAnsweredQuestion(int $question_id, float $max_points, float $reached_points, bool $is_answered, ?int $sequence=null, int $manual=0)
setStatusOfAttempt(?StatusOfAttempt $status_of_attempt)
setMaxPoints(float $maxpoints)
getAnsweredQuestionCount()
StatusOfAttempt $status_of_attempt
setReachedPoints(float $reachedpoints)
setNrOfAnsweredQuestions(int $nrOfAnsweredQuestions)
DateTimeImmutable $last_access_time
getAnsweredQuestionByQuestionId(int $question_id)
getNrOfAnsweredQuestions()
getAnsweredQuestion(int $index)
setExamId(string $exam_id)