array( 'title' => t('Default'), 'panels implementations' => array(), 'render panel' => 'panels_default_style_render_panel', ), ); } /** * Implementation of hook_panels_panel_style_render(). */ function panels_default_style_render_panel($display, $panel_id, $panes) { return theme('panels_default_style', $display, $panel_id, $panes); } /** * Panel style: default (panes separated by whitespace). */ function theme_panels_default_style($display, $panel_id, $panes) { $output = ''; foreach ($panes as $pane) { if (isset($output)) { $output .= '
'; } $output .= theme('panels_pane', $pane, $display); } return $output; }