| Current Path : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_widgetkit/layouts/fields/ |
| Current File : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_widgetkit/layouts/fields/radio.php |
<?php
/**
* @package Widgetkit
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
foreach ($node->children() as $option) {
// set attributes
$attributes = array('type' => 'radio', 'name' => $name, 'value' => $option->attributes()->value);
// is checked ?
if ($option->attributes()->value == $value) {
$attributes = array_merge($attributes, array('checked' => 'checked'));
}
printf('<input %s /> %s ', $this['field']->attributes($attributes), (string) $option);
}