Projet

Général

Profil

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

root / drupal7 / sites / all / modules / views / theme / views-more.tpl.php @ 76df55b7

1
<?php
2

    
3
/**
4
 * @file
5
 * Theme the more link.
6
 *
7
 * - $view: The view object.
8
 * - $more_url: the url for the more link.
9
 * - $link_text: the text for the more link.
10
 *
11
 * @ingroup views_templates
12
 */
13
?>
14

    
15
<div class="more-link">
16
  <a href="<?php print $more_url ?>">
17
    <?php print $link_text; ?>
18
  </a>
19
</div>