blob: ced1499f9b940cbcba9c225e55d8e6000a62d6c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<label><?= _('Für alle Veranstaltungen') ?>
<select name="lock_sem_all" style="max-width: 200px">
<? for ($i = 0; $i < count($all_lock_rules); $i++) : ?>
<option value="<?= $all_lock_rules[$i]["lock_id"] ?>"
<?= ($all_lock_rules[$i]["lock_id"] == $values['lock_rule']) ? 'selected' : '' ?>>
<?= htmlReady($all_lock_rules[$i]["name"]) ?>
</option>
<? endfor ?>
</select>
</label>
<?= \Studip\Button::createAccept(_('Zuweisen'), 'all'); ?>
|