You are here

function panels_get_style in Panels 5.2

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

Collate information about a specific panel style.

Parameters

$style: Name of a panel style.

Return value

An array with information about the requested panel style.

4 calls to panels_get_style()
panels_get_panel_style_and_settings in ./panels.module
Given a display and the id of a panel, get the style in which to render that panel.
panels_panel_settings in includes/display_edit.inc
Form to edit panel style settings.
panels_panel_settings_ajax in includes/display_edit.inc
AJAX incoming to deal with the style settings modal
panels_render_pane in ./panels.module
Render a pane using the appropriate style.

File

includes/plugins.inc, line 1577
plugins.inc

Code

function panels_get_style($style) {
  return panels_get_plugins('styles', 'panels_styles', $style);
}