45 return current($this->questionHints);
56 return reset($this->questionHints);
67 return next($this->questionHints);
78 return key($this->questionHints);
89 return key($this->questionHints) !== null;
109 $this->questionHints[] = $questionHint;
121 foreach ($this as $questionHint) {
124 if ($questionHint->getId() == $hintId) {
125 return $questionHint;
129 require_once
'Modules/TestQuestionPool/exceptions/class.ilTestQuestionPoolException.php';
143 foreach ($this as $questionHint) {
146 if ($questionHint->getId() == $hintId) {
167 foreach ($this as $questionHint) {
170 $questionHint->setIndex(++$counter);
171 $questionHint->save();
188 $questionHintList = self::getListByQuestionId($originalQuestionId);
190 foreach ($questionHintList as $questionHint) {
193 $originalHintId = $questionHint->getId();
195 $questionHint->setId(null);
196 $questionHint->setQuestionId($duplicateQuestionId);
198 $questionHint->save();
200 $duplicateHintId = $questionHint->getId();
202 $hintIds[$originalHintId] = $duplicateHintId;
217 $tableData = array();
219 foreach ($this as $questionHint) {
222 $tableData[] = array(
223 'hint_id' => $questionHint->getId(),
224 'hint_index' => $questionHint->getIndex(),
225 'hint_points' => $questionHint->getPoints(),
226 'hint_text' => $questionHint->getText()
245 $ilDB = $DIC[
'ilDB'];
256 WHERE qht_question_fi = %s 258 ORDER BY qht_hint_index ASC 264 array((
int) $questionId)
267 $questionHintList =
new self();
274 $questionHintList->addHint($questionHint);
277 return $questionHintList;
292 $ilDB = $DIC[
'ilDB'];
294 $qht_hint_id__IN__hintIds =
$ilDB->in(
'qht_hint_id', (array) $hintIds,
false,
'integer');
305 WHERE $qht_hint_id__IN__hintIds 307 ORDER BY qht_hint_index ASC 312 $questionHintList =
new self();
319 $questionHintList->addHint($questionHint);
322 return $questionHintList;
339 $ilDB = $DIC[
'ilDB'];
342 SELECT 1 + COALESCE( MAX(qht_hint_index), 0 ) next_index 346 WHERE qht_question_fi = %s 352 array((
int) $questionId)
357 return $row[
'next_index'];
369 $ilDB = $DIC[
'ilDB'];
371 $__qht_question_fi__IN__questionIds =
$ilDB->in(
'qht_question_fi', $questionIds,
false,
'integer');
374 DELETE FROM qpl_hints 375 WHERE $__qht_question_fi__IN__questionIds static getListByQuestionId($questionId)
instantiates a question hint list for the passed question id
rewind()
iterator interface method
static deleteHintsByQuestionIds($questionIds)
Deletes all question hints relating to questions included in given question ids.
static getListByHintIds($hintIds)
instantiates a question hint list for the passed hint ids
hintExists($hintId)
checks wether a question hint object relating to the passed id exists or not
static getNextIndexByQuestionId($questionId)
determines the next index to be used for a new hint that is to be added to the list of existing hints...
key()
iterator interface method
static duplicateListForQuestion($originalQuestionId, $duplicateQuestionId)
duplicates a hint list from given original question id to given duplicate question id and returns an ...
next()
iterator interface method
reIndex()
re-indexes the list's hints sequentially by current order (starting with index "1") ...
valid()
iterator interface method
static assignDbRow(self $questionHint, $hintDbRow)
assigns the field elements of passed hint db row array to the corresponding hint object properties of...
addHint(ilAssQuestionHint $questionHint)
adds a question hint object to the current list instance
current()
iterator interface method
__construct()
Constructor.
getTableData()
returns an array with data of the hints in this list that is adopted to be used as table gui data ...
getHint($hintId)
returns the question hint object relating to the passed hint id