You are here

function panels_block_panels_styles in Panels 6.2

Same name and namespace in other branches
  1. 5.2 styles/block.inc \panels_block_panels_styles()

Implementation of hook_panels_style_info().

File

styles/block.inc, line 14
styles/block.inc Definition of the 'default' panel style.

Code

function panels_block_panels_styles() {
  return array(
    'block' => array(
      'title' => t('System block'),
      'description' => t('Display the pane as a system block; this is more restrictive than the default.'),
      'render pane' => 'panels_block_style_render_pane',
    ),
  );
}