2014-03-25 72 views
-2

你好我正在使用joomla 2.5,如果有一個新的文章或類別內的內容提​​交了一段時間,是否有任何擴展名給主要菜單上的星形或圖像通知? 讓我們只是說,如果今天提交了一篇文章,主菜單(產品類型:類別列表)會在文章提交後的3天左右在菜單旁邊顯示通知,例如明星或新標籤。主菜單通知是否有文章更新[Joomla 2.5]?

回答

1

可以覆蓋mod_menu模板,並添加此功能:

  • 複製模塊/ mod_menu/TMPL/default_component.php到您的模板模板/ yourtemplate/HTML/mod_menu/default_component.php
  • 編輯default_component.php使用您自己的標準檢查新文章。

F.ex:

if($item->query['option']=='com_content' && $item->query['view']=='category'){ 
$sql="select id from #__content where published=1 and catid=" 
.intval($item->query['id']) 
." and created>='2014-03-27'"; 
$db=JFactory::getDbo(); 
$db->setQuery($sql); 
if(count($db->loadAssoc())) $item->title.='*'; 
} 

...因此,*添加到標題,如果最新的項目是從2014年3月27日或以後...

問候喬納斯