blob: e5e8f925e0cbd630f0a2f8bdd5584820f44fc1b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<form action="<?= $list['stop'] ? $controller->url_for('/index') : $controller->url_for('/chooser'); ?>" style="width: 100%;" id="<?= htmlReady($name) ?>">
<? if (is_array($list['elements']) && sizeof($list['elements'])) : ?>
<input type="hidden" name="step" value="<?= htmlReady($name) ?>">
<? if ($list['stop']) : ?>
<input type="hidden" name="stop" value="1">
<? endif; ?>
<label><?= $list['headline'] ?>
<select name="id" style="width: 100%;">
<option value="">-- <?= _('Bitte wählen') ?> --</option>
<? foreach ($list['elements'] as $key => $element) : ?>
<option value="<?= htmlReady($key) ?>"<?= $key == $list['selected'] ? ' selected' : '' ?>>
<?= htmlReady($element['name']) ?>
</option>
<? endforeach; ?>
</select>
</label>
<? endif; ?>
</form>
|