You are here

views-slideshow-galleria.tpl.php in Views Slideshow: Galleria 6

This will format a view to display several images in a Galleria style, for Views Slideshow: Galleria.

  • $view: The view object.
  • $options: Style options. See below.
  • $rows: The output for the rows.
  • $title: The title of this group of rows. May be empty.
  • $id: The unique counter for this view.

File

themes/views-slideshow-galleria.tpl.php
View source
<?php

/**
 *  @file
 *  This will format a view to display several images in a Galleria style, for
 *  Views Slideshow: Galleria.
 *
 * - $view: The view object.
 * - $options: Style options. See below.
 * - $rows: The output for the rows.
 * - $title: The title of this group of rows.  May be empty.
 * - $id: The unique counter for this view.
 */
?>

  <div id="views-slideshow-galleria-<?php

print $id;
?>" class="views-slideshow-galleria">
    <?php

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

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

}
?>

    <div id="views-slideshow-galleria-images-<?php

print $id;
?>" class="<?php

print $classes;
?>">
      <?php

foreach ($rows as $row) {
  ?>
       <?php

  print $row . "\n";
  ?>
      <?php

}
?>
    </div>

  </div>