| Tittel | kode | ||
|---|---|---|---|
| Lagret av | StoneHead | ||
| Tidspunkt | 08/01/12 22:44 | ||
| Kodespråk | php |
<?php $_items = $this->getReviewsCollection()->getItems(); if (count($_items)) { echo '<div class="test">'; echo "<div>"; // start på første indre div foreach ($_items as $idx => $_review): if (($idx % 5==0) && $idx > 0) echo "</div><div>"; printf('<li>%s <small class="date">%s</small></li>', $this->__('%s', $this->htmlEscape($_review->getNickname())), $this->__('%s', $this->formatDate($_review->getCreatedAt()), 'long') ); endforeach; echo "</div>"; // div test } ?>