<?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');
?>
<div class="iframedoc" id="iframedoc"></div>
<table class="adminlist" cellpadding="1">
<thead>
<tr>
<th class="title titlenum">
<?php echo JText::_( 'HIKA_NUM' );?>
</th>
<th class="title">
<?php echo JText::_('HIKA_NAME'); ?>
</th>
<th class="title titletoggle">
<?php echo JText::_('HIKA_ENABLED'); ?>
</th>
<th class="title titleid">
<?php echo JText::_( 'ID' ); ?>
</th>
</tr>
</thead>
<tbody>
<?php
$k = 0;
for($i = 0,$a = count($this->plugins);$i<$a;$i++){
$row =& $this->plugins[$i];
if(version_compare(JVERSION,'1.6','<')){
$publishedid = 'published-'.$row->id;
}else{
$publishedid = 'enabled-'.$row->id;
}
?>
<tr class="<?php echo "row$k"; ?>">
<td align="center">
<?php echo $i+1 ?>
</td>
<td>
<a href="<?php echo hikashop::completeLink('plugins&task=edit&name='.$row->element.'&plugin_type='.$this->plugin_type);?>"><?php echo $row->name; ?></a>
</td>
<td align="center">
<span id="<?php echo $publishedid ?>" class="loading">
<?php echo $this->toggleClass->toggle($publishedid,$row->published,'plugins'); ?>
</span>
</td>
<td align="center">
<?php echo $row->id; ?>
</td>
</tr>
<?php
$k = 1-$k;
}
?>
</tbody>
</table>