You are here

function advanced_forum_get_all_styles in Advanced Forum 7.2

Same name and namespace in other branches
  1. 6.2 includes/style.inc \advanced_forum_get_all_styles()

Returns all styles.

3 calls to advanced_forum_get_all_styles()
advanced_forum_path_to_style in includes/style.inc
Returns the path to the advanced forum style.
advanced_forum_settings_page in includes/settings.inc
Defines the Advanced Forum settings form.
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 27
Functions relating to the style system, not including core hooks and preprocess / theme functions.

Code

function advanced_forum_get_all_styles() {
  ctools_include('plugins');
  return ctools_get_plugins('advanced_forum', 'styles');
}