You are here

function advanced_forum_get_current_style in Advanced Forum 6.2

Same name and namespace in other branches
  1. 5 advanced_forum.module \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.

3 calls to advanced_forum_get_current_style()
advanced_forum_path_to_style in includes/style.inc
Returns the path to the advanced forum style, including the style name
advanced_forum_style_info in includes/style.inc
Get the info for a style, using an additive notation to include all items from the parent lineage.
advanced_forum_style_lineage in includes/style.inc
Starting at a given style, return paths of it and all ancestor styles

File

includes/style.inc, line 13
Functions relating to the style system, not including core hooks and preprocess / theme functions.

Code

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