Your IP : 216.73.216.170


Current Path : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_widgetkit/layouts/fields/
Upload File :
Current File : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_widgetkit/layouts/fields/style.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
*/

printf('<select %s>', $this['field']->attributes(compact('name')));

foreach ($this['path']->dirs((string) $node->attributes()->path) as $option) {

	// set attributes
	$attributes = array('value' => $option);
	
	// is checked ?
	if ($option == $value) {
		$attributes = array_merge($attributes, array('selected' => 'selected'));
	}

	printf('<option %s>%s</option>', $this['field']->attributes($attributes), $option);
}

printf('</select>');