You are here

function theme_panels_pane_collapsible in Panels 6.2

Same name and namespace in other branches
  1. 5.2 includes/display_edit.inc \theme_panels_pane_collapsible()

Related topics

1 theme call to theme_panels_pane_collapsible()
theme_panels_pane_dnd in includes/display-edit.inc

File

includes/display-edit.inc, line 994

Code

function theme_panels_pane_collapsible($block) {
  $output = '';
  $output .= '<h2 class="title">' . $block->title . '</h2>';
  $output .= '<div class="content">' . filter_xss_admin($block->content) . '</div>';
  return $output;
}