blob: c45425004b6f045d0490a7762cee94b351a1ad90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<label>
<span class="datafield_title <?= $model->is_required ? 'required' : '' ?>">
<?= htmlReady($model->name) ?>
</span>
<? if ($model->description): ?>
<?= tooltipIcon($model->description) ?>
<? endif ?>
<input type="url" name="<?= $name ?>[<?= $model->id ?>]"
value="<?= htmlReady($value) ?>" id="<?= $name ?>_<?= $model->id ?>"
<?= !$entry->isEditable() ? "disabled" : "" ?>
size="30" placeholder="http://"
<? if ($model->is_required) echo 'required'; ?>>
</label>
|