aboutsummaryrefslogtreecommitdiff
path: root/templates/elearning/_cms_selectbox.php
blob: 398a6f454745a4bd441846b436e1ec0774338b97 (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
<?php use Studip\Button, Studip\LinkButton; ?>
<form method="POST" action="<?=URLHelper::getLink()?>#anker" class="default">
    <?=CSRFProtection::tokenTag()?>
    <fieldset>
        <?= ELearningUtils::getHeader(_("Angebundenes System")); ?>

        <input type="HIDDEN" name="anker_target" value="choose">
        <input type="HIDDEN" name="view" value="<?=htmlReady($view)?>">
        <input type="HIDDEN" name="search_key" value="<?=htmlReady($search_key)?>">

        <label>
            <?=htmlReady($message)?>
            <select name="cms_select" style="vertical-align:middle">
                <option value=""><?=_("Bitte auswählen")?></option>
                <? foreach($options as $key => $name) : ?>
                    <option value="<?=$key?>" <?=($cms_select == $key) ? ' selected' : ''?>>
                        <?=htmlReady($name)?>
                    </option>
                <? endforeach ?>
            </select>
        </label>
    </fieldset>

    <footer>
        <?= Button::create(_('Auswählen')) ?>
    </footer>
</form>