77 $this->type = (
int) $a_type;
79 $this->shuffle =
true;
92 return $this->type === self::TYPE_TEXT;
97 return $this->type === self::TYPE_SELECT;
102 return $this->type === self::TYPE_NUMERIC;
114 $this->type = $a_type;
126 if ($gap_index ===
null) {
127 return $shuffler->
transform($this->items);
131 for ($i = -2; $i < $gap_index; $i++) {
163 return count($this->items);
177 $order = $a_item->getOrder();
178 if (array_key_exists($order, $this->items)) {
180 for ($i = 0; $i < $order; $i++) {
181 array_push($newitems, $this->items[$i]);
183 array_push($newitems, $a_item);
184 for ($i = $order, $iMax = count($this->items); $i < $iMax; $i++) {
185 array_push($newitems, $this->items[$i]);
188 foreach ($newitems as $idx => $item) {
189 $newitems[$idx]->setOrder($i);
192 $this->items = $newitems;
194 array_push($this->items, $a_item);
210 foreach ($this->items as $key => $item) {
211 if ($item->getOrder() == $order) {
212 $item->setPoints($points);
228 if (array_key_exists($order, $this->items)) {
229 unset($this->items[$order]);
231 foreach ($this->items as $key => $item) {
232 $this->items[$key]->setOrder($order);
250 foreach ($this->items as $key => $item) {
251 if ($item->getOrder() == $order) {
252 $item->setLowerBound($bound);
269 foreach ($this->items as $key => $item) {
270 if ($item->getOrder() == $order) {
271 $item->setUpperBound($bound);
288 if (array_key_exists($a_index, $this->items)) {
289 return $this->items[$a_index];
317 $this->shuffle = (bool) $a_shuffle;
341 foreach ($this->items as $item) {
342 if (strlen($item->getAnswertext()) > $maxwidth) {
343 $maxwidth = strlen($item->getAnswertext());
360 foreach ($this->items as $key => $item) {
361 if ($item->getPoints() > $maxpoints) {
362 $maxpoints = $item->getPoints();
366 foreach ($this->items as $key => $item) {
367 if ($item->getPoints() == $maxpoints) {
368 array_push($keys, $key);
384 case self::TYPE_TEXT:
385 case self::TYPE_SELECT:
386 $best_solutions = [];
387 if ($combinations !==
null && $combinations[
'best_solution'] === 1) {
388 $points_string_for_key = (string) $combinations[
'points'];
389 $best_solutions[$points_string_for_key] = [];
390 array_push($best_solutions[$points_string_for_key], $combinations[
'answer']);
392 foreach ($this->
getItems($shuffler) as $answer) {
393 $points_string_for_key = (string) $answer->getPoints();
394 if (isset($best_solutions[$points_string_for_key]) && is_array($best_solutions[$points_string_for_key])) {
395 array_push($best_solutions[$points_string_for_key], $answer->getAnswertext());
397 $best_solutions[$points_string_for_key] = [];
398 array_push($best_solutions[$points_string_for_key], $answer->getAnswertext());
403 krsort($best_solutions, SORT_NUMERIC);
404 reset($best_solutions);
405 $found = current($best_solutions);
406 return join(
" " .
$lng->txt(
"or") .
" ", $found);
408 case self::TYPE_NUMERIC:
411 foreach ($this->
getItems($shuffler) as $answer) {
412 if ($answer->getPoints() >= $maxpoints) {
413 $maxpoints = $answer->getPoints();
414 $foundvalue = $answer->getAnswertext();
439 if ($this->
getType() != self::TYPE_NUMERIC) {
446 $lowerBound = $math->evaluate($item->getLowerBound());
447 $upperBound = $math->evaluate($item->getUpperBound());
448 $preciseValue = $math->evaluate($item->getAnswertext());
450 if ($lowerBound < $preciseValue || $upperBound > $preciseValue) {
setItemUpperBound($order, $bound)
Sets the upper bound for a given item.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setType($a_type=0)
Sets the cloze gap type.
const TEXTGAP_RATING_LEVENSHTEIN3
deleteItem($order)
Deletes an item at a given index.
setItemLowerBound($order, $bound)
Sets the lower bound for a given item.
clearItems()
Removes all gap items.
const TEXTGAP_RATING_CASEINSENSITIVE
Class for cloze question gaps.
const TEXTGAP_RATING_LEVENSHTEIN5
setItemPoints($order, $points)
Sets the points for a given item.
const TEXTGAP_RATING_LEVENSHTEIN2
const TEXTGAP_RATING_CASESENSITIVE
const TEXTGAP_RATING_LEVENSHTEIN1
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getItemsRaw()
Gets the items of a cloze gap.
getItems(Transformation $shuffler, ?int $gap_index=null)
addItem($a_item)
Adds a gap item.
getBestSolutionIndexes()
Returns the indexes of the best solutions for the gap.
setGapSize(int $gap_size)
getMaxWidth()
Returns the maximum width of the gap.
getItemCount()
Gets the item count.
getShuffle()
Gets the shuffle state of the items.
getItem($a_index)
Gets the item with a given index.
setShuffle($a_shuffle=true)
Sets the shuffle state of the items.
const TEXTGAP_RATING_LEVENSHTEIN4
getBestSolutionOutput(Transformation $shuffler, $combinations=null)
__construct($a_type)
assClozeGap constructor