You are here

function theme_panels_pane_collapsible in Panels 5.2

Same name and namespace in other branches
  1. 6.2 includes/display-edit.inc \theme_panels_pane_collapsible()
2 theme calls to theme_panels_pane_collapsible()
panels_content_config_edit_form_submit in includes/display_edit.inc
theme_panels_pane_dnd in includes/display_edit.inc

File

includes/display_edit.inc, line 1715

Code

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