You are here

function theme_advanced_forum_topic_legend in Advanced Forum 5

Theme function for advanced_forum_topic_legend().

1 theme call to theme_advanced_forum_topic_legend()
advanced_forum_preprocess_forum_topic_list in ./advanced_forum.module
Preprocesses template variables for the topic list template.

File

./advanced_forum.module, line 258
Enables the look and feel of other popular forum software.

Code

function theme_advanced_forum_topic_legend() {
  $variables = array();

  // Pass the parameters into our preprocess function
  advanced_forum_call_preprocess('advanced_forum_topic_legend', $variables);

  // Set the template file
  $forum_style = advanced_forum_get_current_style();
  return _phptemplate_callback("advanced_forum_topic_legend", $variables, array(
    "{$forum_style}/advanced_forum-topic-legend",
  ));
}