Skip to content
Snippets Groups Projects
Commit 339493db authored by Elmar Ludwig's avatar Elmar Ludwig
Browse files

add Vips as CorePlugin, re #4258

Merge request !3432
parent 10636268
No related branches found
No related tags found
No related merge requests found
Showing
with 961 additions and 0 deletions
<?php
/**
* @var ClozeTask $exercise
*/
?>
<? $exercise->sortAnswersById(); ?>
<table class="rh_table inline-content">
<? foreach ($exercise->task['groups'] as $i => $group): ?>
<tr style="vertical-align: top">
<td class="rh_label">
<?= formatReady($group) ?>
</td>
<td class="rh_list <?= htmlReady($exercise->task['select']) ?>" data-group="<?= $i ?>" title="<?= _('Elemente hier ablegen') ?>">
<? foreach ($exercise->task['answers'] as $answer): ?>
<? if (isset($response[$answer['id']]) && $response[$answer['id']] == $i): ?>
<div class="rh_item drag-handle" tabindex="0">
<?= formatReady($answer['text']) ?>
<input type="hidden" name="answer[<?= $answer['id'] ?>]" value="<?= $i ?>">
</div>
<? endif ?>
<? endforeach ?>
</td>
<? if ($i == 0): ?>
<td rowspan="<?= count($exercise->task['groups']) ?>" class="rh_list answer_container" data-group="-1">
<? foreach ($exercise->task['answers'] as $answer): ?>
<? if (!isset($response[$answer['id']]) || $response[$answer['id']] == -1): ?>
<div class="rh_item drag-handle" tabindex="0">
<?= formatReady($answer['text']) ?>
<input type="hidden" name="answer[<?= $answer['id'] ?>]" value="-1">
</div>
<? endif ?>
<? endforeach ?>
</td>
<? endif ?>
</tr>
<? endforeach ?>
</table>
<?php
/**
* @var ClozeTask $exercise
* @var float|int $points
*/
?>
<exercise id="exercise-<?= $exercise->id ?>" points="<?= $points ?>"
<? if ($exercise->options['comment']): ?> feedback="true"<? endif ?>>
<title>
<?= htmlReady($exercise->title) ?>
</title>
<description>
<?= htmlReady($exercise->description) ?>
</description>
<? if ($exercise->options['hint'] != ''): ?>
<hint>
<?= htmlReady($exercise->options['hint']) ?>
</hint>
<? endif ?>
<items>
<item type="<?= $exercise->isMultiSelect() ? 'matching-multiple' : 'matching' ?>">
<choices>
<? foreach ($exercise->task['groups'] as $group): ?>
<choice type="group">
<?= htmlReady($group) ?>
</choice>
<? endforeach ?>
</choices>
<answers>
<? foreach ($exercise->task['answers'] as $answer): ?>
<answer score="1" correct="<?= $answer['group'] ?>">
<?= htmlReady($answer['text']) ?>
</answer>
<? endforeach ?>
</answers>
<? if ($exercise->options['feedback'] != ''): ?>
<feedback>
<?= htmlReady($exercise->options['feedback']) ?>
</feedback>
<? endif ?>
</item>
</items>
<? if ($exercise->folder): ?>
<file-refs<? if ($exercise->options['files_hidden']): ?> hidden="true"<? endif ?>>
<? foreach ($exercise->folder->file_refs as $file_ref): ?>
<file-ref ref="file-<?= $file_ref->file_id ?>"/>
<? endforeach ?>
</file-refs>
<? endif ?>
</exercise>
<?php
/**
* @var Exercise $exercise
* @var VipsSolution $solution
* @var array $results
* @var array $response
* @var bool $show_solution
* @var array $optional_choice
*/
?>
<table class="description inline-content">
<? foreach ($exercise->task['answers'] as $key => $entry): ?>
<tr class="mc_row">
<td class="mc_item">
<?= formatReady($entry['text']) ?>
</td>
<td style="white-space: nowrap;">
<? if (isset($response[$key]) && $response[$key] !== '' && $response[$key] != -1): ?>
<? if ($response[$key] == $entry['choice']): ?>
<?= Icon::create('accept', Icon::ROLE_STATUS_GREEN)->asImg(['class' => 'correction_marker', 'title' => _('richtig')]) ?>
<? else: ?>
<?= Icon::create('decline', Icon::ROLE_STATUS_RED)->asImg(['class' => 'correction_marker', 'title' => _('falsch')]) ?>
<? endif ?>
<? endif ?>
<? foreach ($exercise->task['choices'] + $optional_choice as $val => $label): ?>
<span class="<?= $show_solution && $entry['choice'] == $val ? 'correct_item' : 'mc_item' ?>">
<? if (isset($response[$key]) && $response[$key] === "$val"): ?>
<?= Assets::img('choice_checked.svg', ['style' => 'margin-left: 1ex;']) ?>
<? else: ?>
<?= Assets::img('choice_unchecked.svg', ['style' => 'margin-left: 1ex;']) ?>
<? endif ?>
<?= htmlReady($label) ?>
</span>
<? endforeach ?>
</td>
</tr>
<? endforeach ?>
</table>
<?= $this->render_partial('exercises/evaluation_mode_info') ?>
<?php
/**
* @var ClozeTask $exercise
*/
?>
<div class="label-text">
<?= _('Auswahlmöglichkeiten') ?>
</div>
<div class="choice_list dynamic_list mc_row">
<? foreach ($exercise->task['choices'] as $i => $choice): ?>
<span class="dynamic_row">
<input type="text" class="character_input size-s" name="choice[<?= $i ?>]" value="<?= htmlReady($choice) ?>">
<?= Icon::create('trash')->asInput(['class' => 'delete_dynamic_row', 'title' => _('Auswahlmöglichkeit löschen')]) ?>
/
</span>
<? endforeach ?>
<span class="dynamic_row template">
<input type="text" class="character_input size-s" data-name="choice">
<?= Icon::create('trash')->asInput(['class' => 'delete_dynamic_row', 'title' => _('Auswahlmöglichkeit löschen')]) ?>
/
</span>
<?= Icon::create('add')->asInput(['class' => 'add_dynamic_row', 'title' => _('Auswahlmöglichkeit hinzufügen')]) ?>
</div>
<label>
<input type="checkbox" name="optional" value="1" <?= $exercise->options['optional'] ? 'checked' : '' ?>>
<?= _('Auswahlmöglichkeit „keine Antwort“ hinzufügen (ohne Bewertung)') ?>
</label>
<div class="label-text">
<?= _('Fragen/Aussagen') ?>
</div>
<div class="dynamic_list">
<? foreach ($exercise->task['answers'] as $i => $answer): ?>
<? $size = $exercise->flexibleInputSize($answer['text']); ?>
<div class="dynamic_row mc_row">
<label class="dynamic_counter size_toggle size_<?= $size ?> undecorated">
<?= $this->render_partial('exercises/flexible_input', ['name' => "answer[$i]", 'value' => $answer['text'], 'size' => $size]) ?>
</label>
<span class="choice_select dynamic_list">
<? foreach ($exercise->task['choices'] as $val => $choice): ?>
<label class="dynamic_row undecorated">
<input type="radio" name="correct[<?= $i ?>]" value="<?= $val ?>" <? if ($answer['choice'] === $val): ?>checked<? endif ?>>
<span><?= htmlReady($choice) ?></span>
</label>
<? endforeach ?>
<label class="dynamic_row undecorated template">
<input type="radio" name="correct[<?= $i ?>]" data-value>
<span></span>
</label>
</span>
<?= Icon::create('trash')->asInput(['class' => 'delete_dynamic_row', 'title' => _('Frage löschen')]) ?>
</div>
<? endforeach ?>
<div class="dynamic_row mc_row template">
<label class="dynamic_counter size_toggle size_small undecorated">
<?= $this->render_partial('exercises/flexible_input', ['data_name' => 'answer', 'size' => 'small']) ?>
</label>
<span class="choice_select dynamic_list">
<? foreach ($exercise->task['choices'] as $val => $choice): ?>
<label class="dynamic_row undecorated">
<input type="radio" data-name="correct" value="<?= $val ?>">
<span><?= htmlReady($choice) ?></span>
</label>
<? endforeach ?>
<label class="dynamic_row undecorated template">
<input type="radio" data-name="correct" data-value=":value">
<span></span>
</label>
</span>
<?= Icon::create('trash')->asInput(['class' => 'delete_dynamic_row', 'title' => _('Frage löschen')]) ?>
</div>
<?= Studip\Button::create(_('Frage hinzufügen'), 'add_answer', ['class' => 'add_dynamic_row']) ?>
</div>
<div class="smaller">
<?= _('Leere Antwortalternativen werden automatisch gelöscht.') ?>
</div>
<?php
/**
* @var ClozeTask $exercise
* @var VipsSolution $solution
* @var bool $print_correction
* @var bool $show_solution
* @var array $optional_choice
*/
?>
<table class="description inline-content">
<? foreach ($exercise->task['answers'] as $key => $entry): ?>
<tr class="mc_row">
<td class="mc_item">
<?= formatReady($entry['text']) ?>
</td>
<td style="white-space: nowrap;">
<? if (isset($response[$key]) && $response[$key] !== '' && $response[$key] != -1 && $print_correction): ?>
<? if ($response[$key] == $entry['choice']): ?>
<?= Icon::create('accept', Icon::ROLE_STATUS_GREEN)->asImg(['class' => 'correction_marker', 'title' => _('richtig')]) ?>
<? else: ?>
<?= Icon::create('decline', Icon::ROLE_STATUS_RED)->asImg(['class' => 'correction_marker', 'title' => _('falsch')]) ?>
<? endif ?>
<? endif ?>
<? foreach ($exercise->task['choices'] + $optional_choice as $val => $label): ?>
<span class="<?= $show_solution && $entry['choice'] == $val ? 'correct_item' : 'mc_item' ?>">
<? if (isset($response[$key]) && $response[$key] === "$val"): ?>
<?= Assets::img('choice_checked.svg', ['style' => 'margin-left: 1ex;']) ?>
<? else: ?>
<?= Assets::img('choice_unchecked.svg', ['style' => 'margin-left: 1ex;']) ?>
<? endif ?>
<?= htmlReady($label) ?>
</span>
<? endforeach ?>
</td>
</tr>
<? endforeach ?>
</table>
<?= $this->render_partial('exercises/evaluation_mode_info') ?>
<?php
/**
* @var ClozeTask $exercise
* @var array $optional_choice
*/
?>
<table class="description inline-content">
<? foreach ($exercise->task['answers'] as $key => $entry): ?>
<tr>
<td>
<?= formatReady($entry['text']) ?>
</td>
<td style="white-space: nowrap;">
<? foreach ($exercise->task['choices'] + $optional_choice as $val => $label): ?>
<label class="undecorated" style="padding: 1ex;">
<input type="radio" name="answer[<?= $key ?>]" value="<?= $val ?>"
<? if (!isset($response[$key]) && $val == -1 || isset($response[$key]) && $response[$key] === "$val"): ?>checked<? endif ?>>
<?= htmlReady($label) ?>
</label>
<? endforeach ?>
</td>
</tr>
<? endforeach ?>
</table>
<?= $this->render_partial('exercises/evaluation_mode_info') ?>
<?php
/**
* @var ClozeTask $exercise
* @var float|int $points
* @var array $optional_choice
*/
?>
<exercise id="exercise-<?= $exercise->id ?>" points="<?= $points ?>"
<? if ($exercise->options['comment']): ?> feedback="true"<? endif ?>>
<title>
<?= htmlReady($exercise->title) ?>
</title>
<description>
<?= htmlReady($exercise->description) ?>
</description>
<? if ($exercise->options['hint'] != ''): ?>
<hint>
<?= htmlReady($exercise->options['hint']) ?>
</hint>
<? endif ?>
<items>
<item type="choice-multiple">
<choices>
<? foreach ($exercise->task['choices'] + $optional_choice as $key => $choice): ?>
<choice type="<?= $key == 0 ? 'yes' : ($key == 1 ? 'no' : ($key == -1 ? 'none' : 'group')) ?>">
<?= htmlReady($choice) ?>
</choice>
<? endforeach ?>
</choices>
<answers>
<? foreach ($exercise->task['answers'] as $answer): ?>
<answer score="<?= $answer['choice'] ? 0 : 1 ?>" correct="<?= (int) $answer['choice'] ?>">
<?= htmlReady($answer['text']) ?>
</answer>
<? endforeach ?>
</answers>
<? if ($exercise->options['feedback'] != ''): ?>
<feedback>
<?= htmlReady($exercise->options['feedback']) ?>
</feedback>
<? endif ?>
</item>
</items>
<? if ($exercise->folder): ?>
<file-refs<? if ($exercise->options['files_hidden']): ?> hidden="true"<? endif ?>>
<? foreach ($exercise->folder->file_refs as $file_ref): ?>
<file-ref ref="file-<?= $file_ref->file_id ?>"/>
<? endforeach ?>
</file-refs>
<? endif ?>
</exercise>
<?php
/**
* @var Exercise $exercise
* @var VipsSolution $solution
* @var array $results
* @var array $response
* @var bool $show_solution
*/
?>
<div class="mc_list inline-content">
<? foreach ($exercise->task['answers'] as $key => $entry): ?>
<div class="mc_flex <?= $show_solution && $entry['score'] ? 'correct_item' : 'mc_item' ?>">
<? if (isset($response[$key]) && $response[$key]): ?>
<?= Assets::img('choice_checked.svg') ?>
<? else: ?>
<?= Assets::img('choice_unchecked.svg') ?>
<? endif ?>
<?= formatReady($entry['text']) ?>
<? if (isset($response[$key])): ?>
<? if ((int) $response[$key] == $entry['score']): ?>
<?= Icon::create('accept', Icon::ROLE_STATUS_GREEN)->asImg(['class' => 'correction_marker', 'title' => _('richtig')]) ?>
<? else: ?>
<?= Icon::create('decline', Icon::ROLE_STATUS_RED)->asImg(['class' => 'correction_marker', 'title' => _('falsch')]) ?>
<? endif ?>
<? endif ?>
</div>
<? endforeach ?>
</div>
<?= $this->render_partial('exercises/evaluation_mode_info') ?>
<?php
/**
* @var ClozeTask $exercise
*/
?>
<div class="label-text">
<?= _('Antwortalternativen') ?>
</div>
<div class="dynamic_list">
<? foreach ($exercise->task['answers'] as $i => $answer): ?>
<? $size = $exercise->flexibleInputSize($answer['text']); ?>
<div class="dynamic_row mc_row">
<label class="dynamic_counter size_toggle size_<?= $size ?> undecorated">
<?= $this->render_partial('exercises/flexible_input', ['name' => "answer[$i]", 'value' => $answer['text'], 'size' => $size]) ?>
</label>
<label class="undecorated" style="padding: 1ex;">
<input type="checkbox" name="correct[<?= $i ?>]" value="1"<? if ($answer['score']): ?> checked<? endif ?>>
<?= _('richtig') ?>
</label>
<?= Icon::create('trash')->asInput(['class' => 'delete_dynamic_row', 'title' => _('Antwort löschen')]) ?>
</div>
<? endforeach ?>
<div class="dynamic_row mc_row template">
<label class="dynamic_counter size_toggle size_small undecorated">
<?= $this->render_partial('exercises/flexible_input', ['data_name' => 'answer', 'size' => 'small']) ?>
</label>
<label class="undecorated" style="padding: 1ex;">
<input type="checkbox" data-name="correct" value="1">
<?= _('richtig') ?>
</label>
<?= Icon::create('trash')->asInput(['class' => 'delete_dynamic_row', 'title' => _('Antwort löschen')]) ?>
</div>
<?= Studip\Button::create(_('Antwort hinzufügen'), 'add_answer', ['class' => 'add_dynamic_row']) ?>
</div>
<div class="smaller">
<?= _('Leere Antwortalternativen werden automatisch gelöscht.') ?>
</div>
<?php
/**
* @var ClozeTask $exercise
* @var bool $print_correction
* @var bool $show_solution
*/
?>
<div class="mc_list inline-content">
<? foreach ($exercise->task['answers'] as $key => $entry): ?>
<div class="mc_flex <?= $show_solution && $entry['score'] ? 'correct_item' : 'mc_item' ?>">
<? if (isset($response[$key]) && $response[$key]): ?>
<?= Assets::img('choice_checked.svg') ?>
<? else: ?>
<?= Assets::img('choice_unchecked.svg') ?>
<? endif ?>
<?= formatReady($entry['text']) ?>
<? if (isset($response[$key]) && $print_correction): ?>
<? if ((int) $response[$key] == $entry['score']): ?>
<?= Icon::create('accept', Icon::ROLE_STATUS_GREEN)->asImg(['class' => 'correction_marker', 'title' => _('richtig')]) ?>
<? else: ?>
<?= Icon::create('decline', Icon::ROLE_STATUS_RED)->asImg(['class' => 'correction_marker', 'title' => _('falsch')]) ?>
<? endif ?>
<? endif ?>
</div>
<? endforeach ?>
</div>
<?= $this->render_partial('exercises/evaluation_mode_info') ?>
<?php
/**
* @var ClozeTask $exercise
*/
?>
<? foreach ($exercise->task['answers'] as $key => $entry): ?>
<label class="inline-content mc_flex">
<input type="checkbox" name="answer[<?= $key ?>]" value="1"<? if (isset($response[$key]) && $response[$key]): ?> checked<? endif ?>>
<?= formatReady($entry['text']) ?>
</label>
<? endforeach ?>
<?= $this->render_partial('exercises/evaluation_mode_info') ?>
<?php
/**
* @var ClozeTask $exercise
* @var float|int $points
*/
?>
<exercise id="exercise-<?= $exercise->id ?>" points="<?= $points ?>"
<? if ($exercise->options['comment']): ?> feedback="true"<? endif ?>>
<title>
<?= htmlReady($exercise->title) ?>
</title>
<description>
<?= htmlReady($exercise->description) ?>
</description>
<? if ($exercise->options['hint'] != ''): ?>
<hint>
<?= htmlReady($exercise->options['hint']) ?>
</hint>
<? endif ?>
<items>
<item type="choice-multiple">
<answers>
<? foreach ($exercise->task['answers'] as $answer): ?>
<answer score="<?= (int) $answer['score'] ?>">
<?= htmlReady($answer['text']) ?>
</answer>
<? endforeach ?>
</answers>
<? if ($exercise->options['feedback'] != ''): ?>
<feedback>
<?= htmlReady($exercise->options['feedback']) ?>
</feedback>
<? endif ?>
</item>
</items>
<? if ($exercise->folder): ?>
<file-refs<? if ($exercise->options['files_hidden']): ?> hidden="true"<? endif ?>>
<? foreach ($exercise->folder->file_refs as $file_ref): ?>
<file-ref ref="file-<?= $file_ref->file_id ?>"/>
<? endforeach ?>
</file-refs>
<? endif ?>
</exercise>
<?php
/**
* @var bool $show_solution
* @var array|null $response
* @var Exercise $exercise
* @var array $results
*/
?>
<table class="default description inline-content nohover">
<thead>
<tr>
<th>
<?= _('Anzuordnende Antworten') ?>
</th>
<? if ($show_solution): ?>
<th>
<?= _('Richtige Antworten') ?>
</th>
<? endif ?>
</tr>
</thead>
<tbody>
<tr style="vertical-align: top;">
<td>
<? if ($response): ?>
<? foreach ($response as $n => $id): ?>
<? foreach ($exercise->task['answers'] as $i => $answer): ?>
<? if ($answer['id'] === $id): ?>
<? if ($exercise->task['compare'] === 'sequence'): ?>
<div class="neutral_item">
<?= formatReady($answer['text']) ?>
</div>
<? if ($n + 1 < count($response)): ?>
<div class="correction_marker sequence">
<? if ($results[$i]['points'] == 1): ?>
<span style="color: green;">}</span>
<?= Icon::create('accept', Icon::ROLE_STATUS_GREEN)->asImg(['title' => _('richtig')]) ?>
<? else: ?>
<span style="color: red;">}</span>
<?= Icon::create('decline', Icon::ROLE_STATUS_RED)->asImg(['title' => _('falsch')]) ?>
<? endif ?>
</div>
<? endif ?>
<? elseif ($exercise->task['compare'] === 'position'): ?>
<div class="<?= $results[$i]['points'] == 1 ? 'correct_item' : 'mc_item' ?>">
<?= formatReady($answer['text']) ?>
<? if ($results[$i]['points'] == 1): ?>
<?= Icon::create('accept', Icon::ROLE_STATUS_GREEN)->asImg(['class' => 'correction_marker', 'title' => _('richtig')]) ?>
<? else: ?>
<?= Icon::create('decline', Icon::ROLE_STATUS_RED)->asImg(['class' => 'correction_marker', 'title' => _('falsch')]) ?>
<? endif ?>
</div>
<? else: ?>
<div class="mc_item">
<?= formatReady($answer['text']) ?>
</div>
<? endif ?>
<? endif ?>
<? endforeach ?>
<? endforeach ?>
<? else: ?>
<? foreach ($exercise->orderedAnswers($response) as $answer): ?>
<div class="mc_item">
<?= formatReady($answer['text']) ?>
</div>
<? endforeach ?>
<? endif ?>
</td>
<? if ($show_solution): ?>
<td>
<? foreach ($exercise->task['answers'] as $answer): ?>
<div class="correct_item">
<?= formatReady($answer['text']) ?>
</div>
<? endforeach ?>
</td>
<? endif ?>
</tr>
</tbody>
</table>
<?php
/**
* @var ClozeTask $exercise
*/
?>
<div class="label-text">
<?= _('Anzuordnende Antworten') ?>
</div>
<div class="dynamic_list sortable_list">
<? foreach ($exercise->task['answers'] as $answer): ?>
<? $size = $exercise->flexibleInputSize($answer['text']); ?>
<div class="dynamic_row mc_row sortable_item drag-handle" tabindex="0">
<label class="dynamic_counter size_toggle size_<?= $size ?> undecorated">
<?= $this->render_partial('exercises/flexible_input', ['name' => 'answer[]', 'value' => $answer['text'], 'size' => $size]) ?>
<input type="hidden" name="id[]" value="<?= $answer['id'] ?>">
</label>
<?= Icon::create('trash')->asInput(['class' => 'delete_dynamic_row', 'title' => _('Antwort löschen')]) ?>
</div>
<? endforeach ?>
<div class="dynamic_row mc_row sortable_item drag-handle template" tabindex="0">
<label class="dynamic_counter size_toggle size_small undecorated">
<?= $this->render_partial('exercises/flexible_input', ['data_name' => '', 'name' => 'answer[]', 'size' => 'small']) ?>
<input type="hidden" name="id[]">
</label>
<?= Icon::create('trash')->asInput(['class' => 'delete_dynamic_row', 'title' => _('Antwort löschen')]) ?>
</div>
<?= Studip\Button::create(_('Antwort hinzufügen'), 'add_answer', ['class' => 'add_dynamic_row']) ?>
</div>
<label>
<?= _('Verfahren zur Punktevergabe') ?>
<select name="compare">
<option value="">
<?= _('Punkte nur bei vollständig korrekter Lösung') ?>
</option>
<option value="position" <?= isset($exercise->task['compare']) && $exercise->task['compare'] === 'position' ? 'selected' : '' ?>>
<?= _('Punkte für Antworten an den korrekten Positionen') ?>
</option>
<option value="sequence" <?= isset($exercise->task['compare']) && $exercise->task['compare'] === 'sequence' ? 'selected' : '' ?>>
<?= _('Punkte für Paare von Antworten in korrekter Reihenfolge') ?>
</option>
</select>
</label>
<?php
/**
* @var bool $show_solution
* @var array|null $response
* @var Exercise $exercise
* @var bool $print_correction
* @var array $results
*/
?>
<table class="content description inline-content" style="min-width: 40em;">
<thead>
<tr>
<th>
<?= _('Anzuordnende Antworten') ?>
</th>
<? if ($show_solution): ?>
<th>
<?= _('Richtige Antworten') ?>
</th>
<? endif ?>
</tr>
</thead>
<tbody>
<tr style="vertical-align: top;">
<td>
<ol>
<? if ($response): ?>
<? foreach ($response as $n => $id): ?>
<? foreach ($exercise->task['answers'] as $i => $answer): ?>
<? if ($answer['id'] === $id): ?>
<? if ($exercise->task['compare'] === 'sequence'): ?>
<li class="neutral_item">
<?= formatReady($answer['text']) ?>
</li>
<? if ($print_correction && $n + 1 < count($response)): ?>
<div class="correction_marker sequence">
<? if ($results[$i]['points'] == 1): ?>
<span style="color: green;">}</span>
<?= Icon::create('accept', Icon::ROLE_STATUS_GREEN)->asImg(['title' => _('richtig')]) ?>
<? else: ?>
<span style="color: red;">}</span>
<?= Icon::create('decline', Icon::ROLE_STATUS_RED)->asImg(['title' => _('falsch')]) ?>
<? endif ?>
</div>
<? endif ?>
<? elseif ($exercise->task['compare'] === 'position'): ?>
<li class="<?= $print_correction && $results[$i]['points'] == 1 ? 'correct_item' : 'mc_item' ?>">
<?= formatReady($answer['text']) ?>
<? if ($print_correction): ?>
<? if ($results[$i]['points'] == 1): ?>
<?= Icon::create('accept', Icon::ROLE_STATUS_GREEN)->asImg(['class' => 'correction_marker', 'title' => _('richtig')]) ?>
<? else: ?>
<?= Icon::create('decline', Icon::ROLE_STATUS_RED)->asImg(['class' => 'correction_marker', 'title' => _('falsch')]) ?>
<? endif ?>
<? endif ?>
</li>
<? else: ?>
<li class="mc_item">
<?= formatReady($answer['text']) ?>
</li>
<? endif ?>
<? endif ?>
<? endforeach ?>
<? endforeach ?>
<? else: ?>
<? foreach ($exercise->orderedAnswers($response) as $answer): ?>
<li class="mc_item">
<?= formatReady($answer['text']) ?>
</li>
<? endforeach ?>
<? endif ?>
</ol>
</td>
<? if ($show_solution): ?>
<td>
<ol>
<? foreach ($exercise->task['answers'] as $answer): ?>
<li class="mc_item">
<?= formatReady($answer['text']) ?>
</li>
<? endforeach ?>
</ol>
</td>
<? endif ?>
</tr>
</tbody>
</table>
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment