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', ), ); } // --------------------------------------------------------------------------- // Panels style plugin callbacks. /** * Render callback. * * @ingroup themeable */ function theme_panels_block_style_render_pane($content, $pane, $display) { if (!empty($content->title)) { $content->subject = $content->title; } return theme('block', $content); }