<?php
/**
* @package HikaShop for Joomla!
* @version 1.4.3
* @author hikashop.com
* @copyright (C) 2010 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?>
<?php
class hikashopWeightType{
function display($map,$weight_unit){
$config =& hikashop::config();
$symbols = explode(',',$config->get('weight_symbols','kg,g'));
if(empty($weight_unit)){
$weight_unit = $symbols[0];
}
if(count($symbols)>1){
$this->values = array();
foreach($symbols as $symbol){
$this->values[] = JHTML::_('select.option', $symbol,JText::_($symbol) );
}
return JHTML::_('select.genericlist', $this->values, $map, 'class="inputbox" size="1"', 'value', 'text', $weight_unit );
}elseif(count($symbols)){
return $weight_unit.'<input type="hidden" name="'.$map.'" value="'.$weight_unit.'" />';
}
return '';
}
}