You are here

function advanced_forum_handler_field_node_topic_icon::render in Advanced Forum 6.2

Same name and namespace in other branches
  1. 7.2 includes/views/advanced_forum_handler_field_node_topic_icon.inc \advanced_forum_handler_field_node_topic_icon::render()

File

includes/views/advanced_forum_handler_field_node_topic_icon.inc, line 38
Field handler to display the topic icon.

Class

advanced_forum_handler_field_node_topic_icon
@file Field handler to display the topic icon.

Code

function render($values) {
  $new_posts = advanced_forum_reply_num_new($values->nid);
  return theme('forum_icon', $new_posts, $values->node_comment_statistics_comment_count, $values->node_comment, $values->node_sticky);
}