You are here

views-slideshow-galleria-main-frame.tpl.php in Views Slideshow: Galleria 6.3

Same filename and directory in other branches
  1. 7.3 views-slideshow-galleria-main-frame.tpl.php

Displays a single Galleria.

Available variables:

  • $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

views-slideshow-galleria-main-frame.tpl.php
View source
<?php

/**
 * @file
 * Displays a single Galleria.
 *
 * Available variables:
 * - $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>