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

15 lines
541 B
PHP

<?
use common\Video;
$video = null;
if($this->value) {
$video = Video::getByID($this->value);
}
?><div class="dropper _video_drop" data-input="video" data-name="<?=$this->name;?>" <?=$this->getDataInit();?>>
<input type="hidden" value="<?=$this->value;?>"/>
<video src="<?=$video[Video::$URL];?>" style="max-height: 240px;max-width: 240px;" controls></video>
<div class="over"></div>
<div class="drop_help"><div class="c-grey l mt-8">Перетяните файл</div></div>
<div class="drop_preview"></div>
</div>