<?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');
?>
<script language="javascript" type="text/javascript">
<!--
var selectedContents = new Array();
var allElements = <?php echo count($this->rows);?>;
<?php
foreach($this->rows as $oneRow){
if(!empty($oneRow->selected)){
echo "selectedContents['".$oneRow->category_name."'] = 'content';";
}
}
?>
function applyContent(contentid,rowClass){
if(selectedContents[contentid]){
window.document.getElementById('content'+contentid).className = rowClass;
delete selectedContents[contentid];
}else{
window.document.getElementById('content'+contentid).className = 'selectedrow';
selectedContents[contentid] = 'content';
}
}
function insertTag(){
var tag = '';
for(var i in selectedContents){
if(selectedContents[i] == 'content'){
allElements--;
if(tag != '') tag += ',';
tag = tag + i;
}
}
window.top.document.getElementById('<?php echo $this->controlName; ?>').value = tag;
window.top.document.getElementById('link_<?php echo $this->controlName; ?>').href = 'index.php?option=com_hikashop&tmpl=component&ctrl=category&task=selectstatus&control=<?php echo $this->controlName; ?>&values='+tag;
try{ window.top.document.getElementById('sbox-window').close(); }catch(err){ window.top.SqueezeBox.close(); }
}
//-->
</script>
<style type="text/css">
table.adminlist tr.selectedrow td{
background-color:#FDE2BA;
}
</style>
<form action="index.php?option=<?php echo HIKASHOP_COMPONENT ?>" method="post" name="adminForm">
<div style="float:right;margin-bottom : 10px">
<button id='insertButton' onclick="insertTag(); return false;"><?php echo JText::_('HIKA_APPLY'); ?></button>
</div>
<div style="clear:both"></div>
<table class="adminlist" cellpadding="1">
<thead>
<tr>
<th class="title">
<?php echo JText::_('HIKA_NAME'); ?>
</th>
<?php if($this->translated){?>
<th class="title">
<?php echo JText::_('NAME_TRANSLATED'); ?>
</th>
<?php }?>
<th class="title titleid">
<?php echo JText::_('ID'); ?>
</th>
</tr>
</thead>
<tbody>
<?php
$k = 0;
foreach($this->rows as $row){
?>
<tr class="<?php echo empty($row->selected) ? "row$k" : 'selectedrow'; ?>" id="content<?php echo $row->category_name; ?>" onclick="applyContent('<?php echo $row->category_name."','row$k'"?>);" style="cursor:pointer;">
<td>
<?php echo $row->category_name; ?>
</td>
<?php if($this->translated){?>
<td>
<?php echo @$row->translation; ?>
</td>
<?php }?>
<td align="center">
<?php echo $row->category_id; ?>
</td>
</tr>
<?php
$k = 1-$k;
}
?>
</tbody>
</table>
</form>