| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @file views-view-unformatted.tpl.php 4 * Default simple view template to display a list of rows. 5 * 6 * @ingroup views_templates 7 */ 8 ?> 9 <?php if (!empty($title)): ?> 10 <h3><?php print $title; ?></h3> 11 <?php endif; ?> 12 <?php foreach ($rows as $id => $row): ?> 13 <div class="<?php print $classes[$id]; ?>"> 14 <?php print $row; ?> 15 </div> 16 <?php endforeach; ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |