meraproject/module/ui/input/image/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

16 lines
499 B
PHP

<?
use common\Image;
$image = null;
if($this->value) {
$image = Image::getByID($this->value);
}
?><div class="dropper _image_drop" data-input="image" data-name="<?=$this->name;?>" <?=$this->getDataInit();?>>
<label><?=$this->label;?></label><br>
<input type="hidden" value="<?=$this->value;?>"/>
<img src="<?=$image[Image::$ORIGINAL];?>" />
<div class="over"></div>
<div class="drop_help"><!--Перетяните файл--></div>
<div class="drop_preview"></div>
</div>