LifeType 1.0/Plugins/recentcomments

LifeType 1.0/Plugins/recentcomments

出自LifeType 中文文件計畫

跳轉到: 導航, 搜尋


名稱: 最近迴響

版本: 1.0

下載連結http://prdownloads.sourceforge.net/lifetype/recentcomments.zip?download

程式授權: GPL

作者Mark Wu

用途

本外掛程式提供網誌的最近迴響列表。

設定

你可以在 設定中心->最近活動管理下找到本外掛設定頁面。

你可以使用:

  1. $recentcomments->isEnabled() 來檢查外掛是否啟用。
  2. $recentcomments->getRecentComments( $maxComments , $based ) 來取得最近迴響。

其中:

  1. $maxComments 是你所要顯示的最大迴響數目。預設值是10。
  2. $based 是用來傳回整個網站或是整個網誌的迴響。 "BLOG"表示整個網誌,"SITE"表示整個網站。預設值是"BLOG"。

將下列代碼新增到footer.templateheader.template

  1. {if $recentcomments->isEnabled()}
  2. <h2>Recent Comments</h2>
  3. {assign">assign">assign var=comments value=$recentcomments->getRecentComments()}
  4. <ul>
  5. {foreach from=$comments item=comment}
  6. {assign">assign">assign var=commentpostid value=$comment->getArticleId()}
  7. {assign">assign">assign var=commentpost value=$recentcomments->getArticle($commentpostid)}
  8. <li><a title="View comments by {$comment->getUsername()}" href="{$url->postPermalink($commentpost)}#{$comment->getId()}"><b>{$comment->getUsername()}</b>{$comment->getText()|truncate:100:"..."|strip_tags}</a></li>
  9. </ul>
  10. {/if}

注意事項