pane-plain-box.tpl.php in Panels 7.3
Same filename and directory in other branches
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.phpView 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>