aboutsummaryrefslogtreecommitdiff
path: root/app/views/vips/exercises/show_exercise_files.php
blob: 822fcee048c56ca9357521db66aa391b955ea825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * @var Exercise $exercise
 */
?>
<? if ($exercise->folder && count($exercise->folder->file_refs) > 0 && !$exercise->options['files_hidden']): ?>
    <div class="label-text">
        <?= _('Dateien zur Aufgabe:') ?>
    </div>

    <ul>
        <? foreach ($exercise->folder->file_refs as $file_ref): ?>
            <li>
                <a href="<?= htmlReady($file_ref->getDownloadURL()) ?>" <?= $file_ref->getContentDisposition() === 'inline' ? 'target="_blank"' : '' ?>>
                    <?= htmlReady($file_ref->name) ?>
                </a>
            </li>
        <? endforeach ?>
    </ul>
<? endif ?>