aboutsummaryrefslogtreecommitdiff
path: root/templates/forms/multiquicksearch_input.php
blob: acb28ae2b2054ce6fee92dbe8004709ada76768a (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>
    <multiquicksearch name="<?= htmlReady($name) ?>"
                 v-model="<?= htmlReady($name) ?>"
                 <?= ($required ? 'required aria-required="true"' : '') ?>
                 :value="<?= htmlReady(json_encode($value)) ?>"
                 id="<?= $id ?>"
                 <?= $attributes ?>>
    </multiquicksearch>
</div>