0 follower

Membuat Recent Comments Portlet

Pada bagian ini, kita membuat portlet terakhir yang menampilkan daftar comment yang dipublikasi baru-baru ini.

1. Membuat Class RecentComment

Kita membuat class RecentComments di dalam file /wwwroot/blog/protected/components/RecentComments.php. File ini memiliki isi:

Yii::import('zii.widgets.CPortlet');
 
class RecentComments extends CPortlet
{
    public $title='Recent Comments';
    public $maxComments=10;
 
    public function getRecentComments()
    {
        return Comment::model()->findRecentComments($this->maxComments);
    }
 
    protected function renderContent()
    {
        $this->render('recentComments');
    }
}

Di atas, kita memanggil method findRecentComments yang mendefinisikan class Comment sebagai berikut,

class Comment extends CActiveRecord
{
    ......
    public function findRecentComments($limit=10)
    {
        return $this->with('post')->findAll(array(
            'condition'=>'t.status='.self::STATUS_APPROVED,
            'order'=>'t.create_time DESC',
            'limit'=>$limit,
        ));
    }
}

2. Membuat View recentComments

View recentComments disimpan di dalam file /wwwroot/blog/protected/components/views/recentComments.php. File view ini hanya menampilkan setiap comment yang dihasilkan oleh method RecentComments::getRecentComments().

3. Menggunakan Portlet RecentComments

Kita memodifikasi file layout /wwwroot/blog/protected/views/layouts/column2.php untuk menempelkan portlet terakhir ini.

......
<div id="sidebar">
 
    <?php if(!Yii::app()->user->isGuest) $this->widget('UserMenu'); ?>
 
    <?php $this->widget('TagCloud', array(
        'maxTags'=>Yii::app()->params['tagCloudCount'],
    )); ?>
 
    <?php $this->widget('RecentComments', array(
        'maxComments'=>Yii::app()->params['recentCommentCount'],
    )); ?>
 
</div>
......

Found a typo or you think this page needs improvement?
Edit it on github !