Revision #2 has been created by Nisanth thulasi on Jun 11, 2014, 5:25:30 PM with the memo:
comments changed to $comments
« previous (#1) next (#3) »
Changes
Title
unchanged
How to create a Widget - Recent Comments widget
Category
unchanged
How-tos
Yii version
unchanged
Tags
unchanged
Widgets, comments, theming
Content
changed
[...]
```php
<ul>
<?php
$comments = $this->getComments();
foreach($comments as $comment)
{
echo "<li> {$comment->fieldName}</li>";
}
?>
</ul>[...]