aboutsummaryrefslogtreecommitdiff
path: root/templates/datafields/email.php
blob: 86779f787164738f43f28317492082762b483d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<label>
    <span class="datafield_title <?= $model->is_required ? 'required' : '' ?>">
        <?= htmlReady($model->name) ?>
    </span>

    <? if ($model->description): ?>
        <?= tooltipIcon($model->description) ?>
    <? endif ?>

    <input type="email" name="<?= $name ?>[<?= $model->id ?>]"
           value="<?= htmlReady($value) ?>" id="<?= $name ?>_<?= $model->id ?>"
           <?= !$entry->isEditable() ? "disabled" : "" ?>
           <? if ($model->is_required) echo 'required'; ?>>
</label>