You are here

function panels_default_panels_styles in Panels 6.2

Same name and namespace in other branches
  1. 5.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',
    ),
  );
}