meraproject/module/ui/input/textarea/views/ms.php
keboss-m 5c21d25d45 Initial commit: Merakomis portal, Docker stack and user-reader API.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-24 11:04:05 +03:00

9 lines
428 B
PHP

<?
use ui\input\Input;
?>
<div data-input="textarea" data-name="<?=$this->name;?>" <?=$this->getDataInit();?>>
<div class="label"><?= ($c = $this->label)?'<label>'.$c.'</label>':'';?>
<label><input type="checkbox" class="_toggle_tinymce"/> Визуальный HTML-редактор</label>
</div>
<textarea class="i" placeholder="<?=$this->options[Input::PLACEHOLDER];?>"><?=h($this->value);?></textarea>
</div>