function advanced_forum_get_current_style in Advanced Forum 7.2
Same name and namespace in other branches
- 5 advanced_forum.module \advanced_forum_get_current_style()
- 6.2 includes/style.inc \advanced_forum_get_current_style()
- 6 advanced_forum.module \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.
- 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 12 - 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');
}