Projet

Général

Profil

Paste
Télécharger (806 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views_slideshow / theme / views-slideshow.tpl.php @ 7547bb19

1
<?php
2

    
3
/**
4
 * @file
5
 * Default views template for displaying a slideshow.
6
 *
7
 * - $view: The View object.
8
 * - $options: Settings for the active style.
9
 * - $rows: The rows output from the View.
10
 * - $title: The title of this group of rows. May be empty.
11
 *
12
 * @ingroup views_templates
13
 */
14
?>
15

    
16
<?php if (!empty($slideshow)): ?>
17
  <div class="skin-<?php print $skin; ?>">
18
    <?php if (!empty($top_widget_rendered)): ?>
19
      <div class="views-slideshow-controls-top clearfix">
20
        <?php print $top_widget_rendered; ?>
21
      </div>
22
    <?php endif; ?>
23

    
24
    <?php print $slideshow; ?>
25

    
26
    <?php if (!empty($bottom_widget_rendered)): ?>
27
      <div class="views-slideshow-controls-bottom clearfix">
28
        <?php print $bottom_widget_rendered; ?>
29
      </div>
30
    <?php endif; ?>
31
  </div>
32
<?php endif; ?>