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