function panels_default_panels_styles in Panels 5.2
Same name and namespace in other branches
- 6.2 styles/default.inc \panels_default_panels_styles()
Implementation of hook_panels_style_info().
File
- styles/
default.inc, line 14 - styles/block.inc Definition of the 'default' panel style.
Code
function panels_default_panels_styles() {
return array(
'default' => array(
'title' => t('Default'),
'description' => t('The default panel rendering style; displays each pane with a separator.'),
'render panel' => 'panels_default_style_render_panel',
),
);
}