You are here

advanced_forum.naked.topic-legend.tpl.php in Advanced Forum 6.2

Theme implementation to show forum legend.

File

styles/naked/advanced_forum.naked.topic-legend.tpl.php
View source
<?php

/**
 * @file
 * Theme implementation to show forum legend.
 *
 */
?>

<div class="forum-topic-legend clear-block">
  <div class="topic-icon-new"><?php

print t('New posts');
?></div>
  <div class="topic-icon-default"><?php

print t('No new posts');
?></div>
  <div class="topic-icon-hot-new"><?php

print t('Hot topic with new posts');
?></div>
  <div class="topic-icon-hot"><?php

print t('Hot topic without new posts');
?></div>
  <div class="topic-icon-sticky"><?php

print t('Sticky topic');
?></div>
  <div class="topic-icon-closed"><?php

print t('Locked topic');
?></div>
</div>