Projet

Général

Profil

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

root / drupal7 / sites / all / modules / advanced_forum / styles / naked / advanced-forum.naked.topic-legend.tpl.php @ 13c3c9b4

1
<?php
2

    
3
/**
4
 * @file
5
 * Theme implementation to show forum legend.
6
 */
7
?>
8

    
9
<div class="forum-topic-legend clearfix">
10
  <div class="topic-icon-new"><?php print t('New posts'); ?></div>
11
  <div class="topic-icon-default"><?php print t('No new posts'); ?></div>
12
  <div class="topic-icon-hot-new"><?php print t('Hot topic with new posts'); ?></div>
13
  <div class="topic-icon-hot"><?php print t('Hot topic without new posts'); ?></div>
14
  <div class="topic-icon-sticky"><?php print t('Sticky topic'); ?></div>
15
  <div class="topic-icon-closed"><?php print t('Locked topic'); ?></div>
16
</div>