21 lines
584 B
PHP
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>';
|
|
}
|
|
|
|
|
|
} |