| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: image-view-image-gallery.tpl.php,v 1.2.2.1 2010/08/03 17:43:00 sun Exp $ 3 4 5 /** 6 * @file 7 * Template for a list of gallery nodes. 8 * 9 * - $title : The title of this group of rows. May be empty. 10 * - $options['type'] will either be ul or ol. 11 * @ingroup views_templates 12 */ 13 ?> 14 <div class="item-list image-gallery-nodes clear-block"> 15 <?php if (!empty($title)): ?> 16 <h3><?php print $title; ?></h3> 17 <?php endif; ?> 18 <<?php print $options['type']; ?> class="images"> 19 <?php foreach ($rows as $id => $row): ?> 20 <li class="<?php print $classes[$id]; ?>"><?php print $row; ?></li> 21 <?php endforeach; ?> 22 </<?php print $options['type']; ?>> 23 </div> 24
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 |