2014-07-03 18 views
0

我想檢測mod_breadcrumbs中的virtmart分類頁面。如何檢測Joomla上的類別頁面?

Breadcrumbs正在加載所有頁面,我只是想在類別頁面中寫入消息。

我的麪包屑代碼:

<div class="breadcrumbs<?php echo $moduleclass_sfx; ?>"> 
    <?php 
     echo '<ul>'; 
     for ($i = 0; $i < $count; $i ++) { 
      // If not the last item in the breadcrumbs add the separator 
      if ($i < $count -1) { 
       if (!empty($list[$i]->link)) echo '<li><a href="'.$list[$i]->link.'" class="pathway">'.$list[$i]->name.'</a></li>'; 
       else echo '<li class="pathway">' . $list[$i]->name . '</li>'; 
       if($i < $count -2) echo ' <li class="pathway separator">></li> '; 
      } else if ($params->get('showLast', 1)) { // when $i == $count -1 and 'showLast' is true 
       if($i > 0) echo ' <li class="pathway separator">></li> '; 
       echo '<li class="pathway">' . $list[$i]->name . '</li>'; 
      } 
     } 
     echo '</ul>'; 
    ?> 
    </div> 

回答

1

這裏是你如何檢查,如果你是一個分類視圖:

$appInput = Jfactory::getApplication()->input; 
if($appInput->getCmd('option')=='com_content' && $appInput->getCmd('view')=='category'){ 
//add your code here 
} 
相關問題