You are here

function theme_panels_default_style_render_region in Panels 7.3

Same name and namespace in other branches
  1. 6.3 plugins/styles/default.inc \theme_panels_default_style_render_region()

Render callback.

File

plugins/styles/default.inc, line 20
Definition of the 'default' panel style.

Code

function theme_panels_default_style_render_region($vars) {
  $output = '';

  //  $output .= '<div class="region region-' . $vars['region_id'] . '">';
  $output .= implode('<div class="panel-separator"></div>', $vars['panes']);

  //  $output .= '</div>';
  return $output;
}