aboutsummaryrefslogtreecommitdiff
path: root/templates/forms/multiselect_input.php
blob: a01ff505ffcd8d768851152b284b491ac7e9e34c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>">
    <label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>">
        <span class="textlabel">
            <?= htmlReady($this->title) ?>
        </span>
        <? if ($this->required) : ?>
            <span class="asterisk" title="<?= _('Dies ist ein Pflichtfeld') ?>" aria-hidden="true">*</span>
        <? endif ?>
    </label>
    <multiselect name="<?= htmlReady($name) ?>[]" <?= ($required ? 'required aria-required="true"' : '') ?>
                 :options="<?= htmlReady(json_encode($options)) ?>"
                 :value="<?= htmlReady(json_encode($value)) ?>"
                 v-model="<?= htmlReady($name) ?>"
                 id="<?= $id ?>"
                 <?= $attributes ?>>
    </multiselect>
</div>