function theme_advf_forum_statistics in Advanced Forum 5
Theme function for advf_forum_statistics().
1 theme call to theme_advf_forum_statistics()
- advanced_forum_preprocess_forum_list in ./
advanced_forum.module - Preprocesses template variables for the forum list template.
File
- ./
advanced_forum.module, line 230 - Enables the look and feel of other popular forum software.
Code
function theme_advf_forum_statistics() {
$variables = array();
// Pass the parameters into our preprocess function
advanced_forum_call_preprocess('advf_forum_statistics', $variables);
// Set the template file
$forum_style = advanced_forum_get_current_style();
return _phptemplate_callback("advf_forum_statistics", $variables, array(
"{$forum_style}/advf-forum-statistics",
));
}