You are here

function panels_get_styles in Panels 6.2

Same name and namespace in other branches
  1. 5.2 includes/plugins.inc \panels_get_styles()
  2. 6.3 includes/plugins.inc \panels_get_styles()
  3. 7.3 includes/plugins.inc \panels_get_styles()

Fetch metadata for all style plugins.

Return value

An array of arrays with information about all available panel styles.

3 calls to panels_get_styles()
panels_ct_conf_form in includes/plugins.inc
Add the default FAPI elements to the content type configuration form
panels_edit_layout_settings_form in includes/display-layout-settings.inc
Form definition for the display layout settings editor.
panels_theme in ./panels.module

File

includes/plugins.inc, line 1610
plugins.inc

Code

function panels_get_styles() {
  return panels_get_plugins('styles', 'panels_styles');
}