ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTestEvaluationPassData.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
28 {
32  public array $answeredQuestions;
33  private ?\DateTimeImmutable $start_time = null;
34  private ?\DateTimeImmutable $last_access_time = null;
35  private int $workingtime;
36  private int $questioncount;
37  private float $maxpoints;
38  private float $reachedpoints;
39  private ?Mark $mark = null;
41  private int $pass;
42  private ?int $requestedHintsCount = null;
43  private ?float $deductedHintPoints = null;
44  private string $exam_id = '';
46 
47  public function __sleep()
48  {
49  return ['answeredQuestions', 'pass', 'nrOfAnsweredQuestions', 'reachedpoints',
50  'maxpoints', 'questioncount', 'workingtime', 'examId'];
51  }
52 
58  public function __construct()
59  {
60  $this->answeredQuestions = [];
61  }
62 
63  public function getNrOfAnsweredQuestions(): int
64  {
66  }
67 
68  public function setNrOfAnsweredQuestions(int $nrOfAnsweredQuestions): void
69  {
70  $this->nrOfAnsweredQuestions = $nrOfAnsweredQuestions;
71  }
72 
73  public function getReachedPoints(): float
74  {
75  return $this->reachedpoints;
76  }
77 
78  public function setReachedPoints(float $reachedpoints): void
79  {
80  $this->reachedpoints = $reachedpoints;
81  }
82 
83  public function getMaxPoints(): float
84  {
85  return $this->maxpoints;
86  }
87 
88  public function setMaxPoints(float $maxpoints): void
89  {
90  $this->maxpoints = $maxpoints;
91  }
92 
93  public function getReachedPointsInPercent(): float
94  {
95  return $this->getMaxPoints() ? $this->getReachedPoints() / $this->getMaxPoints() * 100.0 : 0.0;
96  }
97 
98  public function getMark(): ?Mark
99  {
100  return $this->mark;
101  }
102 
103  public function setMark(Mark $mark): void
104  {
105  $this->mark = $mark;
106  }
107 
108  public function getQuestionCount(): int
109  {
110  return $this->questioncount;
111  }
112 
113  public function setQuestionCount(int $questioncount): void
114  {
115  $this->questioncount = $questioncount;
116  }
117 
118  public function getStartTime(): ?\DateTimeImmutable
119  {
120  return $this->start_time;
121  }
122 
123  public function setStartTime(?string $start_time): void
124  {
125  if ($start_time !== null) {
126  $this->start_time = new \DateTimeImmutable($start_time);
127  }
128  }
129 
131  {
133  }
134 
135  public function setLastAccessTime(?string $last_access_time): void
136  {
137  if ($last_access_time !== null) {
138  $this->last_access_time = new \DateTimeImmutable($last_access_time);
139  }
140  }
141 
142  public function getWorkingTime(): int
143  {
144  return $this->workingtime;
145  }
146 
147  public function setWorkingTime(int $workingtime): void
148  {
149  $this->workingtime = $workingtime;
150  }
151 
152  public function getPass(): int
153  {
154  return $this->pass;
155  }
156 
157  public function setPass(int $pass): void
158  {
159  $this->pass = $pass;
160  }
161 
162  public function getAnsweredQuestions(): array
163  {
165  }
166 
167  public function addAnsweredQuestion(
168  int $question_id,
169  float $max_points,
170  float $reached_points,
171  bool $is_answered,
172  ?int $sequence = null,
173  int $manual = 0
174  ): void {
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,
181  'manual' => $manual
182  ];
183  }
184 
185  public function getAnsweredQuestion(int $index): ?array
186  {
187  if (array_key_exists($index, $this->answeredQuestions)) {
188  return $this->answeredQuestions[$index];
189  }
190 
191  return null;
192  }
193 
194  public function getAnsweredQuestionByQuestionId(int $question_id): ?array
195  {
196  foreach ($this->answeredQuestions as $question) {
197  if ($question['id'] == $question_id) {
198  return $question;
199  }
200  }
201  return null;
202  }
203 
204  public function getAnsweredQuestionCount(): int
205  {
206  return count($this->answeredQuestions);
207  }
208 
209  public function getRequestedHintsCount(): ?int
210  {
212  }
213 
214  public function setRequestedHintsCount(int $requestedHintsCount): void
215  {
216  $this->requestedHintsCount = $requestedHintsCount;
217  }
218 
219  public function getDeductedHintPoints(): ?float
220  {
222  }
223 
224  public function setDeductedHintPoints(float $deductedHintPoints): void
225  {
226  $this->deductedHintPoints = $deductedHintPoints;
227  }
228 
229  public function getExamId(): string
230  {
231  return $this->exam_id;
232  }
233 
234  public function setExamId(string $exam_id): void
235  {
236  $this->exam_id = $exam_id;
237  }
238 
240  {
241  if ($this->status_of_attempt) {
243  }
244 
245  return StatusOfAttempt::FINISHED_BY_UNKNOWN;
246  }
247 
248  public function setStatusOfAttempt(?StatusOfAttempt $status_of_attempt): void
249  {
250  $this->status_of_attempt = $status_of_attempt;
251  }
252 }
A class defining marks for assessment test objects.
Definition: Mark.php:35
setLastAccessTime(?string $last_access_time)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setDeductedHintPoints(float $deductedHintPoints)
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)
setNrOfAnsweredQuestions(int $nrOfAnsweredQuestions)