meraproject/module/ui/input/avatar_picker/model.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

21 lines
584 B
PHP

<?
namespace ui\input;
class Avatar_Picker extends Input{
public function render(array $opt = array()): string {
return '
<div class="mfnl" data-url="'.$this->options['url'].'">
<input name="'.$this->name.'" value="'.intval($this->value).'" type="hidden"/>
<img style="max-width:246px;max-height:246px;" src="'.$this->options['img'].'"/>
<div >
<input type="file" name="image"/><!--<button type="button" class="btn btn-primary" >Загрузить</button>-->
</div>
</div>';
}
}