You are here

function advanced_forum_get_current_style in Advanced Forum 5

Same name and namespace in other branches
  1. 6.2 includes/style.inc \advanced_forum_get_current_style()
  2. 6 advanced_forum.module \advanced_forum_get_current_style()
  3. 7.2 includes/style.inc \advanced_forum_get_current_style()

Returns the name of the forum style to use.

12 calls to advanced_forum_get_current_style()
advanced_forum_path_to_style in ./advanced_forum.module
Returns the full path to the advanced forum style, including the style name
advanced_forum_preprocess_comment in ./advanced_forum.module
Preprocesses template variables for the comment template.
advanced_forum_preprocess_node in ./advanced_forum.module
Preprocesses template variables for the node template.
phptemplate_forum_display in ./advanced_forum.module
Implementation of theme_forum_display().
phptemplate_forum_icon in ./advanced_forum.module
Implementation of theme_forum_icon

... See full list

File

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

Code

function advanced_forum_get_current_style() {
  return variable_get('advanced_forum_style', 'naked');
}