You are here

function theme_advanced_forum_forum_legend in Advanced Forum 5

Theme function for advanced_forum_forum_legend().

1 theme call to theme_advanced_forum_forum_legend()
advanced_forum_preprocess_forum_list in ./advanced_forum.module
Preprocesses template variables for the forum list template.

File

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

Code

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

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

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