Projet

Général

Profil

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

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

1
<?php
2

    
3
/**
4
 * @file
5
 * Default simple view template to display a list of summary lines.
6
 *
7
 * @ingroup views_templates
8
 */
9
?>
10
<div class="item-list">
11
  <ul class="views-summary">
12
  <?php foreach ($rows as $id => $row): ?>
13
    <li><a href="<?php print $row->url; ?>"<?php print !empty($row_classes[$id]) ? ' class="' . $row_classes[$id] . '"' : ''; ?>><?php print $row->link; ?></a>
14
      <?php if (!empty($options['count'])): ?>
15
        (<?php print $row->count?>)
16
      <?php endif; ?>
17
    </li>
18
  <?php endforeach; ?>
19
  </ul>
20
</div>