blob: 123c9a6d2986cd1884046e395319c8e86e39f466 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<?php
/**
* @var ClozeTask $exercise
* @var VipsSolution $solution
* @var bool $print_correction
* @var bool $show_solution
*/
?>
<? $exercise->sortAnswersById(); ?>
<table class="content description inline-content" style="min-width: 40em;">
<thead>
<tr>
<th>
<?= _('Vorgegebener Text') ?>
</th>
<th>
<?= _('Zugeordnete Antworten') ?>
</th>
<? if ($show_solution) : ?>
<th>
<?= _('Richtige Antworten') ?>
</th>
<? endif ?>
</tr>
</thead>
<tbody>
<? foreach ($exercise->task['groups'] as $i => $group) : ?>
<tr style="vertical-align: top;">
<td>
<div class="mc_item">
<?= formatReady($group) ?>
</div>
</td>
<td>
<? foreach ($exercise->task['answers'] as $answer): ?>
<? if (isset($response[$answer['id']]) && $response[$answer['id']] == $i): ?>
<div class="<?= $print_correction && $exercise->isCorrectAnswer($answer, $i) ? 'correct_item' : 'mc_item' ?>">
<?= formatReady($answer['text']) ?>
<? if ($print_correction): ?>
<? if ($exercise->isCorrectAnswer($answer, $i)) : ?>
<?= Icon::create('accept', Icon::ROLE_STATUS_GREEN)->asSvg(['class' => 'correction_marker', 'title' => _('richtig')]) ?>
<? else : ?>
<?= Icon::create('decline', Icon::ROLE_STATUS_RED)->asSvg(['class' => 'correction_marker', 'title' => _('falsch')]) ?>
<? endif ?>
<? endif ?>
</div>
<? endif ?>
<? endforeach ?>
</td>
<? if ($show_solution) : ?>
<td>
<? foreach ($exercise->correctAnswers($i) as $correct_answer): ?>
<div class="mc_item">
<?= formatReady($correct_answer) ?>
</div>
<? endforeach ?>
</td>
<? endif ?>
</tr>
<? endforeach ?>
</tbody>
</table>
<div class="label-text">
<? if ($print_correction): ?>
<?= _('Nicht zugeordnete Antworten:') ?>
<? else: ?>
<?= _('Antwortmöglichkeiten:') ?>
<? endif ?>
</div>
<ol class="inline-content">
<? foreach ($exercise->task['answers'] as $answer): ?>
<? if (!isset($response[$answer['id']]) || $response[$answer['id']] == -1): ?>
<li>
<?= formatReady($answer['text']) ?>
<? if ($solution->id && $print_correction): ?>
<? if ($exercise->isCorrectAnswer($answer, -1)): ?>
<?= Icon::create('accept', Icon::ROLE_STATUS_GREEN)->asSvg(['title' => _('richtig')]) ?>
<? else: ?>
<?= Icon::create('decline', Icon::ROLE_STATUS_RED)->asSvg(['title' => _('falsch')]) ?>
<? endif ?>
<? endif ?>
</li>
<? endif ?>
<? endforeach ?>
</ol>
|