/[drupal]/contributions/modules/jcarousellite/modules/jcarousellite_views/views-view-jcarousellite.tpl.php
ViewVC logotype

Diff of /contributions/modules/jcarousellite/modules/jcarousellite_views/views-view-jcarousellite.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1, Wed Sep 16 23:54:12 2009 UTC revision 1.1.2.1, Wed Sep 16 23:54:12 2009 UTC
# Line 0  Line 1 
1    <?php
2    // $Id: views-view-list.tpl.php,v 1.3 2008/09/30 19:47:11 merlinofchaos Exp $
3    /**
4     * @file views-view-jcarousellite.tpl.php
5     * Default simple view template to display a list of rows.
6     *
7     * - $title : The title of this group of rows.  May be empty.
8     * - $options['type'] will either be ul or ol.
9     * @ingroup views_templates
10     */
11    ?>
12    <div class="item-list">
13      <?php if (!empty($title)) : ?>
14        <h3><?php print $title; ?></h3>
15      <?php endif; ?>
16            <<?php print $options['type']; ?>>
17            <?php foreach ($rows as $id1 => $row): ?>
18                    <li class="<?php print $classes[$id1]; ?>">
19                    <div>
20                    <?php foreach ($row as $id2 => $l): ?>
21          <div><?php print $l; ?></div>
22        <?php endforeach; ?>
23                    </div>
24      <?php endforeach; ?>
25            </li>
26            </<?php print $options['type']; ?>>
27    </div>

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.2.1

  ViewVC Help
Powered by ViewVC 1.1.2