7 lines
364 B
PHP
7 lines
364 B
PHP
<?
|
|
use ui\input\Input;
|
|
?>
|
|
<div data-input="radio" data-name="<?=$this->name;?>" <?=$this->getDataInit();?>>
|
|
<?= ($c = $this->label)?'<div class="label"><label>'.$c.'</label></div>':'';?>
|
|
<input value="<?=h($this->value);?>" type="radio" name="<?=$this->name;?>" value="<?=$this->value;?>" <?=$this->options[Input::CHECKED]?'checked="checked"':'';?>>
|
|
</div>
|