You are here

pane-plain-box.tpl.php in Panels 6.3

Same filename and directory in other branches
  1. 7.3 plugins/style_bases/pane/pane_plain_box/pane-plain-box.tpl.php

Display the box for rounded corners.

  • $pane: The pane being rendered
  • $display: The display being rendered
  • $content: An object containing the content and title
  • $output: The result of theme('panels_pane')
  • $classes: The classes that must be applied to the top divs.

File

plugins/style_bases/pane/pane_plain_box/pane-plain-box.tpl.php
View source
<?php

/**
 * @file
 *
 * Display the box for rounded corners.
 *
 * - $pane: The pane being rendered
 * - $display: The display being rendered
 * - $content: An object containing the content and title
 * - $output: The result of theme('panels_pane')
 * - $classes: The classes that must be applied to the top divs.
 */
?>
<div class="<?php

print $classes;
?>">
  <?php

print $output;
?>
</div>