PATH:
home
/
letacommog
/
letaweb
/
admin
/
widgets
/
views
/
modules
/
contactform
<div class="control-group"> <label class="control-label"> <?php echo isset($item->name) ? $item->name : '' ?><?php echo isset($item->required) && $item->required ? '*' : '' ?> </label> <div class="controls name"> <?php $options = array(); if (isset($item['options'])) { $options = preg_split('/\r\n|[\r\n]/', trim($item['options'])); //print_r($options); } for ($i = 0; $i < count($options);++$i) { ?> <input type="radio" name="" /><?php echo $options[$i]; ?> <?php } ?> <?php if (isset($item->required) && $item->required) { ?><span class="require error"><?php Yii::app()->lang->t('ENTRY_NAME_ERROR_REQUIRED') ?></span><?php } ?> </div> </div>
[+]
..
[-] address.php
[edit]
[-] checkbox.php
[edit]
[-] spacer.php
[edit]
[-] password.php
[edit]
[-] file.php
[edit]
[-] textarea.php
[edit]
[-] text.php
[edit]
[-] radio.php
[edit]
[-] email.php
[edit]
[-] name.php
[edit]
[-] line.php
[edit]
[-] phone.php
[edit]