| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @file views-view-summary.tpl.php 4 * Default simple view template to display a list of summary lines 5 * 6 * @ingroup views_templates 7 */ 8 ?> 9 <div class="item-list"> 10 <ul class="views-summary"> 11 <?php foreach ($rows as $id => $row): ?> 12 <li><a href="<?php print $row->url; ?>"<?php print !empty($classes[$id]) ? ' class="'. $classes[$id] .'"' : ''; ?>><?php print $row->link; ?></a> 13 <?php if (!empty($options['count'])): ?> 14 (<?php print $row->count?>) 15 <?php endif; ?> 16 </li> 17 <?php endforeach; ?> 18 </ul> 19 </div>
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 |