Projet

Général

Profil

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

root / drupal7 / sites / all / modules / views / theme / views-view-list.tpl.php @ 5d12d676

1
<?php
2

    
3
/**
4
 * @file
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
 *
10
 * @ingroup views_templates
11
 */
12
?>
13
<?php print $wrapper_prefix; ?>
14
  <?php if (!empty($title)) : ?>
15
    <h3><?php print $title; ?></h3>
16
  <?php endif; ?>
17
  <?php print $list_type_prefix; ?>
18
    <?php foreach ($rows as $id => $row): ?>
19
      <li class="<?php print $classes_array[$id]; ?>"><?php print $row; ?></li>
20
    <?php endforeach; ?>
21
  <?php print $list_type_suffix; ?>
22
<?php print $wrapper_suffix; ?>