echo $searchWord;
    ?>
					<span class="muted"><?php 
    echo ' (' . $count . ' ' . ($count > 1 ? JText::_("COM_PAYCART_ITEMS") : JText::_("COM_PAYCART_ITEM")) . ')';
    ?>
</span>
				</h3>
			<?php 
} elseif (!empty($filters->core->selectedCategoryId)) {
    ?>
				<h3>
					<?php 
    echo JText::_('COM_PAYCART_CATEGORY');
    ?>
 : <?php 
    echo PaycartProductcategory::getInstance($filters->core->selectedCategoryId)->getTitle();
    ?>
					<span class="muted"><?php 
    echo ' (' . $count . ' ' . ($count > 1 ? JText::_("COM_PAYCART_ITEMS") : JText::_("COM_PAYCART_ITEM")) . ')';
    ?>
</span>
				</h3>
			<?php 
}
?>
		</div>
	</div>
	<hr>
<!-- =============================================
       2. Top section :  Applied filters 
     ============================================= -->
* @package 		PAYCART
* @subpackage	Front-end
* @contact		support+paycart@readybytes.in
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
?>

<div class='pc-categories-wrapper row-fluid clearfix'>
	<div id="pc-categories" class='pc-categories span12 clearfix' data-columns >

		<?php 
foreach ($categories as $c) {
    ?>
			<?php 
    $instance = PaycartProductcategory::getInstance($c->productcategory_id, $c);
    ?>
	
			<div class="pc-category-outer">
			<?php 
    $media = $instance->getCoverMedia();
    ?>
			<?php 
    $url = PaycartRoute::_('index.php?option=com_paycart&view=productcategory&task=display&productcategory_id=' . $c->productcategory_id);
    ?>
				<a href="<?php 
    echo $url;
    ?>
" title="<?php 
    echo $instance->getTitle();
    ?>
示例#3
0
</h3>						
		<ul class="customNavigation pull-right inline list-inline">
		  <li><i class="prev fa fa-angle-left fa-3x"></i></li>
		  <li><i class="next fa fa-angle-right fa-3x"></i></li>
		</ul>
	</div>
	<div class="">
		<div id="pc-mod-categories-<?php 
echo $module->id;
?>
" class="pc-mod-categories">
			<?php 
foreach ($ids as $id) {
    ?>
				<?php 
    $instance = PaycartProductcategory::getInstance($categories[$id]->productcategory_id);
    ?>
				<?php 
    $media = $instance->getCoverMedia(true);
    ?>
				<a href="<?php 
    echo PaycartRoute::_('index.php?option=com_paycart&view=productcategory&task=display&productcategory_id=' . $categories[$id]->productcategory_id);
    ?>
"
					title="<?php 
    echo $categories[$id]->title;
    ?>
">
					<div class="pc-mod-category item">
						<img class="img-thumbnail" src="<?php 
    echo $media['squared'];