RecentComments.php 334 B

12345678910111213141516171819
  1. <?php
  2. Yii::import('zii.widgets.CPortlet');
  3. class RecentComments extends CPortlet
  4. {
  5. public $title='Recent Comments';
  6. public $maxComments=10;
  7. public function getRecentComments()
  8. {
  9. return Comment::model()->findRecentComments($this->maxComments);
  10. }
  11. protected function renderContent()
  12. {
  13. $this->render('recentComments');
  14. }
  15. }