<?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');
?>
<table class="admintable" width="280px" style="margin:auto">
<tr>
<td class="key">
<label for="characteristic_value">
<?php echo JText::_( 'HIKA_NAME' ); ?>
</label>
</td>
<td>
<input type="text" name="<?php echo $this->characteristic_value_input;?>" value="<?php echo $this->escape(@$this->element->characteristic_value); ?>" />
<?php if(isset($this->characteristic_value_published)){
$publishedid = 'published-'.$this->characteristic_value_id;
?>
<span id="<?php echo $publishedid; ?>" class="spanloading"><?php echo $this->toggle->toggle($publishedid,(int) $this->characteristic_value_published,'translation') ?></span>
<?php } ?>
</td>
</tr>
</table>