You are here

function theme_panels_dnd in Panels 6.2

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

Related topics

1 string reference to 'theme_panels_dnd'
panels_theme in ./panels.module
1 theme call to theme_panels_dnd()
theme_panels_edit_display_form in includes/display-edit.inc
Theme the edit display form.

File

includes/display-edit.inc, line 962

Code

function theme_panels_dnd($content) {
  $output = '<div class="panels-dnd" id="panels-dnd-main">' . $content . '</div>';
  return $output;
}