source: sipes/cord/modules/forum/forum-icon.tpl.php @ c25d016

stableversion-3.0
Last change on this file since c25d016 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: 540 octetos
Línea 
1<?php
2
3/**
4 * @file forum-icon.tpl.php
5 * Display an appropriate icon for a forum post.
6 *
7 * Available variables:
8 * - $new_posts: Indicates whether or not the topic contains new posts.
9 * - $icon: The icon to display. May be one of 'hot', 'hot-new', 'new',
10 *   'default', 'closed', or 'sticky'.
11 *
12 * @see template_preprocess_forum_icon()
13 * @see theme_forum_icon()
14 */
15?>
16<?php if ($new_posts): ?>
17  <a name="new">
18<?php endif; ?>
19
20<?php print theme('image', "misc/forum-$icon.png") ?>
21
22<?php if ($new_posts): ?>
23  </a>
24<?php endif; ?>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.