You are here

advanced-forum.bootstrap.topic-icon.tpl.php in Advanced Forum Bootstrap 7.3

Display an appropriate icon for a forum post.

Available variables:

  • $new_posts: Indicates whether or not the topic contains new posts.
  • $icon: The icon to display. May be one of 'hot', 'hot-new', 'new', 'default', 'closed', or 'sticky'.
  • $node_type: The type of the node that is displayed

File

styles/bootstrap/advanced-forum.bootstrap.topic-icon.tpl.php
View source
<?php

/**
 * @file
 * Display an appropriate icon for a forum post.
 *
 * Available variables:
 * - $new_posts: Indicates whether or not the topic contains new posts.
 * - $icon: The icon to display. May be one of 'hot', 'hot-new', 'new',
 *   'default', 'closed', or 'sticky'.
 * - $node_type: The type of the node that is displayed
 *
 * @see template_preprocess_forum_icon()
 * @see advanced_forum_preprocess_forum_icon()
 */
?>

<span class="<?php

print $classes;
?>" <?php

print $attributes;
?> title="<?php

print "{$icon_title}";
?>"></span>