meraproject/module/ui/input/image/views/ms.php

16 lines
499 B
PHP
Raw Normal View History

<?
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>