source: sipes/cord/modules/forum/forum-topic-navigation.tpl.php @ b354002

stableversion-3.0
Last change on this file since b354002 was b354002, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 1.2 KB
Línea 
1<?php
2
3/**
4 * @file forum-topic-navigation.tpl.php
5 * Default theme implementation to display the topic navigation string at the
6 * bottom of all forum topics.
7 *
8 * Available variables:
9 *
10 * - $prev: The node ID of the previous post.
11 * - $prev_url: The URL of the previous post.
12 * - $prev_title: The title of the previous post.
13 *
14 * - $next: The node ID of the next post.
15 * - $next_url: The URL of the next post.
16 * - $next_title: The title of the next post.
17 *
18 * - $node: The raw node currently being viewed. Contains unsafe data
19 *   and any data in this must be cleaned before presenting.
20 *
21 * @see template_preprocess_forum_topic_navigation()
22 * @see theme_forum_topic_navigation()
23 */
24?>
25<?php if ($prev || $next): ?>
26  <div class="forum-topic-navigation clear-block">
27    <?php if ($prev): ?>
28      <a href="<?php print $prev_url; ?>" class="topic-previous" title="<?php print t('Go to previous forum topic') ?>">‹ <?php print $prev_title ?></a>
29    <?php endif; ?>
30    <?php if ($next): ?>
31      <a href="<?php print $next_url; ?>" class="topic-next" title="<?php print t('Go to next forum topic') ?>"><?php print $next_title ?> â€º</a>
32    <?php endif; ?>
33  </div>
34<?php endif; ?>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.