Projet

Général

Profil

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

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

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
 * - $new_window: The flag that indicates if link should be opened in a new
11
 *   window.
12
 *
13
 * @ingroup views_templates
14
 */
15
?>
16

    
17
<div class="more-link">
18
  <a href="<?php print $more_url ?>"<?php if (!empty($new_window)) { ?> target="_blank"<?php
19
 } ?>>
20
    <?php print $link_text; ?>
21
  </a>
22
</div>