You are here

image-gallery-view-image-gallery-terms.tpl.php in Image 6

Template for a list of gallery terms.

  • $title : The title of this group of rows. May be empty.
  • $options['type'] will either be ul or ol.

File

contrib/image_gallery/views/theme/image-gallery-view-image-gallery-terms.tpl.php
View source
<?php

/**
 * @file
 * Template for a list of gallery terms.
 *
 * - $title : The title of this group of rows.  May be empty.
 * - $options['type'] will either be ul or ol.
 * @ingroup views_templates
 */
?>
<div class="item-list image-gallery-terms clear-block">
  <?php

if (!empty($title)) {
  ?>
    <h3><?php

  print $title;
  ?></h3>
  <?php

}
?>
  <<?php

print $options['type'];
?> class="galleries">
    <?php

foreach ($rows as $id => $row) {
  ?>
      <li class="<?php

  print $classes[$id];
  ?> clear-block"><?php

  print $row;
  ?></li>
    <?php

}
?>
  </<?php

print $options['type'];
?>>
</div>