aboutsummaryrefslogtreecommitdiff
path: root/app/views/vips/sheets/content_bar_icons.php
blob: 5d6268a7b38b6bc7f045fc4b28aa602bd380786b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<? if (isset($prev_exercise_url)): ?>
    <a href="<?= htmlReady($prev_exercise_url) ?>">
        <?= Icon::create('arr_1left')->asImg(24, ['title' => _('Vorige Aufgabe')]) ?>
    </a>
<? else: ?>
    <span>
        <?= Icon::create('arr_1left', Icon::ROLE_INACTIVE)->asImg(24) ?>
    </span>
<? endif ?>

<? if (isset($next_exercise_url)): ?>
    <a href="<?= htmlReady($next_exercise_url) ?>">
        <?= Icon::create('arr_1right')->asImg(24, ['title' => _('Nächste Aufgabe')]) ?>
    </a>
<? else: ?>
    <span>
        <?= Icon::create('arr_1right', Icon::ROLE_INACTIVE)->asImg(24) ?>
    </span>
<? endif ?>