Comparing
#1 with
#3
Yii version
1.1
Tags
Widgets, comments, themingtheming,comments
Content
[...]
**Step 1: - Creating a Widget Component**
**components/Comments.php**
```php
Yii::import('zii.widgets.CPortlet');[...]
```php
<ul>
<?php
$comments = $this->getComments();
foreach(
$comments as $comment)
{
echo "<li> {$comment->fieldName}</li>";[...]
```php
public function findRecentComments($limit=null)
{[...]
```php
$this->widget('Comments', array(
'maxComments'=>10,
));
```[...]