oa-styles-oa-pane-box.tpl.php in Open Atrium Styles 7.2
This template handles the layout of oa_pane style.
2 theme calls to oa-styles-oa-pane-box.tpl.php
- theme_oa_styles_oa_pane_style_render_pane in plugins/
styles/ oa_pane/ oa_styles_oa_pane.inc - Render callback for a single pane.
- theme_oa_styles_oa_pane_style_render_region in plugins/
styles/ oa_pane/ oa_styles_oa_pane.inc - Render callback for a single region.
File
plugins/styles/oa_pane/oa-styles-oa-pane-box.tpl.phpView source
<?php
/**
* @file
* This template handles the layout of oa_pane style.
*/
?>
<div class="oa-pane <?php
if (isset($settings['extra_class'])) {
print $settings['extra_class'];
}
?>">
<?php
print $content;
?>
</div>