aboutsummaryrefslogtreecommitdiff
path: root/templates/datafields/textmarkup.php
blob: e876d132f2c029e5470ce35b50199b64d70fc97f (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="add_toolbar wysiwyg"
              <?= !$entry->isEditable() ? "disabled" : "" ?>
              <? if ($model->is_required) echo 'required'; ?>
    ><?= wysiwygReady($value) ?></textarea>
</label>