<?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 $link = hikashop::completeLink('category&task=listing&cid='.$this->row->category_id.'&name='.$this->row->alias.$this->menu_id);?>
<table>
<tr>
<td width="<?php echo $this->image->main_thumbnail_x+30;?>px">
<div class="hikashop_category_left_part" style="text-align:center;">
<div style="height:<?php echo $this->image->main_thumbnail_y;?>px;width:<?php echo $this->image->main_thumbnail_x;?>px;text-align:center;margin:auto" class="hikashop_product_image">
<a href="<?php echo $link;?>">
<?php
echo $this->image->display(@$this->row->file_path,false,$this->escape($this->row->category_name));
?>
</a>
</div>
</div>
</td>
<td valign="top">
<div class="hikashop_category_right_part">
<h2>
<span class="hikashop_category_name">
<a href="<?php echo $link;?>">
<?php
echo $this->row->category_name;
?>
</a>
</span>
</h2>
<span class="hikashop_category_desc">
<?php
echo $this->row->category_description;
?>
</span>
</div>
</td>
</tr>
</table>