| 12345678910111213141516171819 |
- <?php
- 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');
- }
- }
|